Rename Do Not Disturb -> Priority Mode

in strings only -- no UI changes in this CL.

Bug: 190180868
Test: manual, ZenModeBypassingAppsPreferenceControllerTest (robotest)

Change-Id: I7bb74d2fd1a9d3b24a8b81a6cc8ba35d38b25656
This commit is contained in:
Yuri Lin
2022-01-12 16:47:03 -05:00
parent a67bb94388
commit e6e5847cce
2 changed files with 152 additions and 152 deletions

View File

@@ -185,7 +185,7 @@ public class ZenModeBypassingAppsPreferenceControllerTest {
// only channel bypassing DND is a conversation (which will be showed on the
// conversations page instead of the apps page)
assertThat(mController.mPreference.isEnabled()).isTrue();
assertThat(mController.getSummary().contains("No apps")).isTrue();
assertThat(mController.getSummary().contains("None")).isTrue();
}
@Test
@@ -246,7 +246,7 @@ public class ZenModeBypassingAppsPreferenceControllerTest {
// THEN the preference is enabled and summary is updated
assertThat(mController.mPreference.isEnabled()).isTrue();
assertThat(mController.getSummary().contains("No apps")).isTrue();
assertThat(mController.getSummary().contains("None")).isTrue();
}
@Test