diff --git a/app/src/androidTest/java/org/mozilla/fenix/ui/robots/HomeScreenRobot.kt b/app/src/androidTest/java/org/mozilla/fenix/ui/robots/HomeScreenRobot.kt index 364ec359f..c9e57e200 100644 --- a/app/src/androidTest/java/org/mozilla/fenix/ui/robots/HomeScreenRobot.kt +++ b/app/src/androidTest/java/org/mozilla/fenix/ui/robots/HomeScreenRobot.kt @@ -203,7 +203,7 @@ private fun assertAddTabButton() = .check(matches(withEffectiveVisibility(Visibility.VISIBLE))) private fun assertNoTabsOpenedHeader() = - onView(CoreMatchers.allOf(ViewMatchers.withText("No tabs opened"))) + onView(CoreMatchers.allOf(ViewMatchers.withText("No open tabs"))) .check(matches(withEffectiveVisibility(Visibility.VISIBLE))) private fun assertNoTabsOpenedText() { diff --git a/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlUIView.kt b/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlUIView.kt index 3940737c3..673e4dad4 100644 --- a/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlUIView.kt +++ b/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlUIView.kt @@ -20,7 +20,7 @@ import org.mozilla.fenix.mvi.UIView val noTabMessage = AdapterItem.NoContentMessage( R.drawable.ic_tabs, - R.string.no_open_tabs_header, + R.string.no_open_tabs_header_2, R.string.no_open_tabs_description ) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 948fb36fd..45f4633d5 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -15,7 +15,7 @@ Search or enter address - No tabs opened + No open tabs Your open tabs will be shown here.