Adjust strings in modes list to match latest mocks

Bug: 346575288
Test: atest ZenModesListItemPreferenceTest
Flag: android.app.modes_ui
Change-Id: Ibe9c049ed0fb3b1838866b923a6227d67885c75c
This commit is contained in:
Matías Hernández
2024-06-25 16:48:31 +02:00
parent 67d977b72e
commit 7fb0c3308e
3 changed files with 6 additions and 6 deletions

View File

@@ -100,7 +100,7 @@ public class ZenModesListItemPreferenceTest {
ShadowLooper.idleMainLooper();
assertThat(preference.getTitle()).isEqualTo("Mode disabled by app");
assertThat(preference.getSummary()).isEqualTo("Tap to set up");
assertThat(preference.getSummary()).isEqualTo("Not set");
assertThat(preference.getIcon()).isNotNull();
}
@@ -120,7 +120,7 @@ public class ZenModesListItemPreferenceTest {
ShadowLooper.idleMainLooper();
assertThat(preference.getTitle()).isEqualTo("Mode disabled by user");
assertThat(preference.getSummary()).isEqualTo("Paused");
assertThat(preference.getSummary()).isEqualTo("Disabled");
assertThat(preference.getIcon()).isNotNull();
}
}