Bug 1543355 - Move early return in org.mozilla.geckoview.test.ContentDelegateTest.download on Android pgo to start of test to avoid timeouts. a=move-of-test-disabling

This commit is contained in:
Sebastian Hengst 2019-05-27 14:31:04 +02:00
parent 5babf3a263
commit 11a4dfbcd7

View File

@ -62,9 +62,9 @@ class ContentDelegateTest : BaseSessionTest() {
}
@Test fun download() {
sessionRule.session.loadTestPath(DOWNLOAD_HTML_PATH)
// disable test on pgo for frequently failing Bug 1543355
assumeThat(sessionRule.env.isDebugBuild, equalTo(true))
sessionRule.session.loadTestPath(DOWNLOAD_HTML_PATH)
sessionRule.waitUntilCalled(object : Callbacks.NavigationDelegate, Callbacks.ContentDelegate {