From bf2a718701430ba43fe867fc72913c39fcd8655a Mon Sep 17 00:00:00 2001 From: Christian Sadilek Date: Thu, 28 Oct 2021 17:34:49 -0400 Subject: [PATCH] [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/21952: Ignore intermittently failing FenixSnackbarKtTest --- .../java/org/mozilla/fenix/tabstray/ext/FenixSnackbarKtTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/test/java/org/mozilla/fenix/tabstray/ext/FenixSnackbarKtTest.kt b/app/src/test/java/org/mozilla/fenix/tabstray/ext/FenixSnackbarKtTest.kt index 1b286e1f8b..66db184b7c 100644 --- a/app/src/test/java/org/mozilla/fenix/tabstray/ext/FenixSnackbarKtTest.kt +++ b/app/src/test/java/org/mozilla/fenix/tabstray/ext/FenixSnackbarKtTest.kt @@ -9,6 +9,7 @@ import android.view.View import io.mockk.every import io.mockk.mockk import io.mockk.verifyOrder +import org.junit.Ignore import org.junit.Test import org.mozilla.fenix.R import org.mozilla.fenix.components.FenixSnackbar @@ -65,6 +66,7 @@ class FenixSnackbarKtTest { } @Test + @Ignore("Intermittent failing test on JDK11: https://github.com/mockk/mockk/issues/598") fun `WHEN anchorWithAction is called THEN correct text will be set`() { val mockContext: Context = mockk { every { getString(R.string.create_collection_view) }