summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff DeCew <jeffdq@google.com>2023-04-03 18:10:51 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-04-03 18:10:51 +0000
commit6b0424260e6f2830af2f02852bc3bde1a15930b4 (patch)
tree815434939c2d70d0071c6e925714e3489be1671c
parent9587fcef86226cda303577025629af0f52979dbe (diff)
parentce645d80ba53587e1f9d1aa656e9ddc3dbfb21b0 (diff)
downloadbase-6b0424260e6f2830af2f02852bc3bde1a15930b4.tar.gz
Merge "[RESTRICT AUTOMERGE] Fix test failure caused by incorrect string" into tm-dev
-rw-r--r--packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImplTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImplTest.java b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImplTest.java
index 3bdf5894fc06..74e93152c066 100644
--- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImplTest.java
+++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImplTest.java
@@ -482,7 +482,7 @@ public class NotificationInterruptStateProviderImplTest extends SysuiTestCase {
assertThat(mNotifInterruptionStateProvider.shouldLaunchFullScreenIntentWhenAdded(entry))
.isFalse();
verify(mLogger, never()).logNoFullscreen(any(), any());
- verify(mLogger).logNoFullscreenWarning(entry, "GroupAlertBehavior will prevent HUN");
+ verify(mLogger).logNoFullscreenWarning(entry, "BubbleMetadata may prevent HUN");
verify(mLogger, never()).logFullscreen(any(), any());
}