Skip to content

Commit

Permalink
PM-13939: Remove hyphen from auto-fill (#4141)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-livefront authored Oct 23, 2024
1 parent 24c8406 commit ef1e840
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 48 deletions.
68 changes: 34 additions & 34 deletions app/src/main/res/values/strings.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -217,15 +217,15 @@ class SearchScreenTest : BaseComposeTest() {
.performClick()

composeTestRule
.onNodeWithText("Do you want to auto-fill or view this item?")
.onNodeWithText("Do you want to autofill or view this item?")
.assert(hasAnyAncestor(isDialog()))
.assertIsDisplayed()
composeTestRule
.onNodeWithText("Auto-fill")
.onNodeWithText("Autofill")
.assert(hasAnyAncestor(isDialog()))
.assertIsDisplayed()
composeTestRule
.onNodeWithText("Auto-fill and save")
.onNodeWithText("Autofill and save")
.assert(hasAnyAncestor(isDialog()))
.assertIsDisplayed()
composeTestRule
Expand Down Expand Up @@ -267,7 +267,7 @@ class SearchScreenTest : BaseComposeTest() {
.performClick()

composeTestRule
.onNodeWithText("Auto-fill")
.onNodeWithText("Autofill")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand All @@ -285,7 +285,7 @@ class SearchScreenTest : BaseComposeTest() {
.performClick()

composeTestRule
.onNodeWithText("Auto-fill")
.onNodeWithText("Autofill")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand All @@ -302,7 +302,7 @@ class SearchScreenTest : BaseComposeTest() {
.performClick()

composeTestRule
.onNodeWithText("Auto-fill and save")
.onNodeWithText("Autofill and save")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand All @@ -320,7 +320,7 @@ class SearchScreenTest : BaseComposeTest() {
.performClick()

composeTestRule
.onNodeWithText("Auto-fill and save")
.onNodeWithText("Autofill and save")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand Down Expand Up @@ -373,7 +373,7 @@ class SearchScreenTest : BaseComposeTest() {
.assertIsDisplayed()
.performClick()
composeTestRule
.onNodeWithText("Auto-fill")
.onNodeWithText("Autofill")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand All @@ -394,7 +394,7 @@ class SearchScreenTest : BaseComposeTest() {
.assertIsDisplayed()
.performClick()
composeTestRule
.onNodeWithText("Auto-fill")
.onNodeWithText("Autofill")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand Down Expand Up @@ -429,7 +429,7 @@ class SearchScreenTest : BaseComposeTest() {
.assertIsDisplayed()
.performClick()
composeTestRule
.onNodeWithText("Auto-fill and save")
.onNodeWithText("Autofill and save")
.assert(hasAnyAncestor(isDialog()))
.performClick()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class SettingsScreenTest : BaseComposeTest() {
onNavigateToVault = { },
)
}
composeTestRule.onNodeWithText("Auto-fill").performClick()
composeTestRule.onNodeWithText("Autofill").performClick()
verify { viewModel.trySendAction(SettingsAction.SettingsClick(Settings.AUTO_FILL)) }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ class AutoFillScreenTest : BaseComposeTest() {
@Test
fun `on block auto fill click should send BlockAutoFillClick`() {
composeTestRule
.onNodeWithText("Block auto-fill")
.onNodeWithText("Block autofill")
.performScrollTo()
.performClick()
verify { viewModel.trySendAction(AutoFillAction.BlockAutoFillClick) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class BlockAutoFillScreenTest : BaseComposeTest() {
@Test
fun `Screen should display empty state view when in ViewState Empty`() {
composeTestRule
.onNodeWithText("Auto-fill will not be offered for these URIs.")
.onNodeWithText("Autofill will not be offered for these URIs.")
.assertIsDisplayed()

composeTestRule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ class VaultAddEditScreenTest : BaseComposeTest() {
)

composeTestRule
.onAllNodesWithText("Bitwarden Auto-fill Service")
.onAllNodesWithText("Bitwarden Autofill Service")
.filterToOne(hasAnyAncestor(isDialog()))
.assertIsDisplayed()

Expand Down

0 comments on commit ef1e840

Please sign in to comment.