Skip to content

Commit

Permalink
Fix test compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Jul 10, 2024
1 parent 417b6ee commit cb4af72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class FallbackBiometricDialogFragmentTests {
fragmentScenario.moveToState(Lifecycle.State.RESUMED)
// Espresso wasn't fast enough to catch this value
authFlow.tryEmit(true)
fragment.requireView().statusText() shouldBeEqualTo context.getString(CommonStrings.lockscreen_fingerprint_success)
fragment.requireView().statusText() shouldBeEqualTo context.getString(im.vector.lib.ui.styles.R.string.lockscreen_fingerprint_success)
}
latch.await()
}
Expand All @@ -95,7 +95,7 @@ class FallbackBiometricDialogFragmentTests {
fragment.authenticationFlow = authFlow
fragmentScenario.moveToState(Lifecycle.State.RESUMED)
authFlow.tryEmit(false)
fragment.requireView().statusText() shouldBeEqualTo context.getString(CommonStrings.lockscreen_fingerprint_not_recognized)
fragment.requireView().statusText() shouldBeEqualTo context.getString(im.vector.lib.ui.styles.R.string.lockscreen_fingerprint_not_recognized)
latch.countDown()
}
latch.await()
Expand Down

0 comments on commit cb4af72

Please sign in to comment.