BIT-729: Update master password hint text (#1057)

This commit is contained in:
David Perez 2024-02-22 17:39:05 -06:00 committed by Álison Fernandes
parent c0c88f5108
commit c779482bf8
2 changed files with 2 additions and 2 deletions

View file

@ -231,7 +231,7 @@ private fun LoginScreenContent(
) )
BitwardenClickableText( BitwardenClickableText(
label = stringResource(id = R.string.get_password_hint), label = stringResource(id = R.string.get_master_passwordword_hint),
onClick = onMasterPasswordClick, onClick = onMasterPasswordClick,
style = MaterialTheme.typography.bodySmall, style = MaterialTheme.typography.bodySmall,
modifier = Modifier modifier = Modifier

View file

@ -243,7 +243,7 @@ class LoginScreenTest : BaseComposeTest() {
@Test @Test
fun `master password hint text click should send MasterPasswordHintClick action`() { 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 { verify {
viewModel.trySendAction(LoginAction.MasterPasswordHintClick) viewModel.trySendAction(LoginAction.MasterPasswordHintClick)
} }