diff --git a/test/integration/Android/Session/LogTests.cs b/test/integration/Android/Session/LogTests.cs index cf67c762..d998f816 100644 --- a/test/integration/Android/Session/LogTests.cs +++ b/test/integration/Android/Session/LogTests.cs @@ -87,7 +87,7 @@ public void CanCaptureBugReportTest() Assert.That(availableLogTypes, Has.Member(BugReportLogType)); var bugReportLogEntry = _driver.Manage().Logs.GetLog(BugReportLogType); - Assert.That(bugReportLogEntry, Is.Not.Null.And.Count.EqualTo(1)); + Assert.That(bugReportLogEntry, Is.Not.Null.And.Count.AtLeast(1)); var bugReportLogPath = bugReportLogEntry.FirstOrDefault()?.Message; var match = Regex.Match(bugReportLogPath ?? throw new InvalidOperationException(), @"^([\s\S])*.zip");