mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
BIT-729: Update master password hint text (#1057)
This commit is contained in:
parent
c0c88f5108
commit
c779482bf8
2 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ private fun LoginScreenContent(
|
|||
)
|
||||
|
||||
BitwardenClickableText(
|
||||
label = stringResource(id = R.string.get_password_hint),
|
||||
label = stringResource(id = R.string.get_master_passwordword_hint),
|
||||
onClick = onMasterPasswordClick,
|
||||
style = MaterialTheme.typography.bodySmall,
|
||||
modifier = Modifier
|
||||
|
|
|
@ -243,7 +243,7 @@ class LoginScreenTest : BaseComposeTest() {
|
|||
|
||||
@Test
|
||||
fun `master password hint text click should send MasterPasswordHintClick action`() {
|
||||
composeTestRule.onNodeWithText("Get your master password hint").performClick()
|
||||
composeTestRule.onNodeWithText("Get master password hint").performClick()
|
||||
verify {
|
||||
viewModel.trySendAction(LoginAction.MasterPasswordHintClick)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue