Update strings (#3356)

This commit is contained in:
David Perez 2024-06-25 11:25:51 -05:00 committed by GitHub
parent ad7a223c22
commit 63e7465433
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -836,7 +836,7 @@ Do you want to switch to this account?</string>
<string name="vault">Vault</string> <string name="vault">Vault</string>
<string name="appearance">Appearance</string> <string name="appearance">Appearance</string>
<string name="account_security">Account security</string> <string name="account_security">Account security</string>
<string name="bitwarden_help_center">Bitwarden Help Center</string> <string name="bitwarden_help_center">Bitwarden help center</string>
<string name="contact_bitwarden_support">Contact Bitwarden support</string> <string name="contact_bitwarden_support">Contact Bitwarden support</string>
<string name="copy_app_information">Copy app information</string> <string name="copy_app_information">Copy app information</string>
<string name="sync_now">Sync now</string> <string name="sync_now">Sync now</string>

View file

@ -92,7 +92,7 @@ class AboutScreenTest : BaseComposeTest() {
@Test @Test
fun `on bitwarden help center click should display confirmation dialog and confirm click should emit HelpCenterClick`() { fun `on bitwarden help center click should display confirmation dialog and confirm click should emit HelpCenterClick`() {
composeTestRule.onNode(isDialog()).assertDoesNotExist() composeTestRule.onNode(isDialog()).assertDoesNotExist()
composeTestRule.onNodeWithText("Bitwarden Help Center").performClick() composeTestRule.onNodeWithText("Bitwarden help center").performClick()
composeTestRule.onNode(isDialog()).assertExists() composeTestRule.onNode(isDialog()).assertExists()
composeTestRule composeTestRule
.onAllNodesWithText("Continue") .onAllNodesWithText("Continue")