diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 86bf4f7855..a62c7129c6 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -537,7 +537,7 @@ Scanning will happen automatically.
Privacy Policy
Bitwarden needs attention - Turn on \"Draw-Over\" in \"Auto-fill Services\" from Bitwarden Settings
Passkey management
- Auto-fill services
+ Autofill services
Use inline autofill
Use inline autofill if your selected IME (keyboard) supports it. If your configuration is not supported (or this option is turned off), the default Autofill overlay will be used.
Use accessibility
@@ -1005,7 +1005,7 @@ Do you want to switch to this account?
Turn on later
Turn on autofill later?
You can return to complete this step anytime in Settings.
- You can now use autofill to log into apps and websites using your saved passwords. Now, you can explore everything else Bitwarden has to offer.
+ You can now explore everything Bitwarden has to offer and start managing your passwords securely.
You\'re all set!
Error connecting with the Duo service. Use a different two-step login method or contact Duo for assistance.
Master password hint
diff --git a/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/accountsetup/SetupAutofillScreenTest.kt b/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/accountsetup/SetupAutofillScreenTest.kt
index b147eb685e..4a383e1ab0 100644
--- a/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/accountsetup/SetupAutofillScreenTest.kt
+++ b/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/accountsetup/SetupAutofillScreenTest.kt
@@ -45,7 +45,7 @@ class SetupAutofillScreenTest : BaseComposeTest() {
@Test
fun `Turning on autofill should send AutofillServiceChanged with value of true`() {
composeTestRule
- .onNodeWithText("Auto-fill services")
+ .onNodeWithText("Autofill services")
.performScrollTo()
.performClick()
@@ -60,7 +60,7 @@ class SetupAutofillScreenTest : BaseComposeTest() {
it.copy(autofillEnabled = true)
}
composeTestRule
- .onNodeWithText("Auto-fill services", ignoreCase = true)
+ .onNodeWithText("Autofill services", ignoreCase = true)
.performScrollTo()
.performClick()
verify {
diff --git a/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/autofill/AutoFillScreenTest.kt b/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/autofill/AutoFillScreenTest.kt
index 81dcafeccc..6a79d0f352 100644
--- a/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/autofill/AutoFillScreenTest.kt
+++ b/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/autofill/AutoFillScreenTest.kt
@@ -198,7 +198,7 @@ class AutoFillScreenTest : BaseComposeTest() {
@Test
fun `on auto fill services toggle should send AutoFillServicesClick`() {
composeTestRule
- .onNodeWithText("Auto-fill services")
+ .onNodeWithText("Autofill services")
.performScrollTo()
.performClick()
verify { viewModel.trySendAction(AutoFillAction.AutoFillServicesClick(true)) }
@@ -207,12 +207,12 @@ class AutoFillScreenTest : BaseComposeTest() {
@Test
fun `auto fill services should be toggled on or off according to state`() {
composeTestRule
- .onNodeWithText("Auto-fill services")
+ .onNodeWithText("Autofill services")
.performScrollTo()
.assertIsOff()
mutableStateFlow.update { it.copy(isAutoFillServicesEnabled = true) }
composeTestRule
- .onNodeWithText("Auto-fill services")
+ .onNodeWithText("Autofill services")
.performScrollTo()
.assertIsOn()
}