We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e42d6 commit 86aef92Copy full SHA for 86aef92
mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/TranslationsTest.kt
@@ -109,10 +109,9 @@ class TranslationsTest : BaseSessionTest() {
109
val translate = mainSession.sessionTranslation!!.translate("es", "en", null)
110
try {
111
sessionRule.waitForResult(translate)
112
- // ToDo: bug 1853469 models not available in automation
113
- assertTrue("Should not be able to translate.", false)
+ assertTrue("Should be able to translate.", true)
114
} catch (e: Exception) {
115
- assertTrue("Should have an exception.", true)
+ assertTrue("Should not have an exception.", false)
116
}
117
118
0 commit comments