diff options
| author | 2020-02-24 10:51:52 -0500 | |
|---|---|---|
| committer | 2020-02-24 22:43:32 +0000 | |
| commit | f9739a89f1ee0d127e26ae81715a3396f004fa1b (patch) | |
| tree | 515150ba688cea209158c6b287ec2a959313a300 | |
| parent | 85cbe43d48e36e459741d71c66c30efd4eced6fd (diff) | |
Fix important person notification ranking test
Fixes: 150116822
Test: atest
Change-Id: I0a84abd04f3136cde5f7bf9bf34d79037c6b7283
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt index f11c42bda6cc..f37836c7a506 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt @@ -208,7 +208,7 @@ class NotificationRankingManagerTest : SysuiTestCase() { .setTag("tag") .setNotification(aN) .setChannel(NotificationChannel("test", "", IMPORTANCE_DEFAULT)) - .setUser(mContext.getUser()) + .setUser(mContext.user) .setOverrideGroupKey("") .build() whenever(personNotificationIdentifier.isImportantPeopleNotification(a.sbn, a.ranking)) @@ -226,12 +226,12 @@ class NotificationRankingManagerTest : SysuiTestCase() { .setTag("tag") .setNotification(bN) .setChannel(NotificationChannel("test", "", IMPORTANCE_DEFAULT)) - .setUser(mContext.getUser()) + .setUser(mContext.user) .setOverrideGroupKey("") .build() - whenever(personNotificationIdentifier.isImportantPeopleNotification(a.sbn, a.ranking)) - .thenReturn(false) - whenever(personNotificationIdentifier.isPeopleNotification(a.sbn, a.ranking)) + whenever(personNotificationIdentifier.isImportantPeopleNotification(b.sbn, b.ranking)) + .thenReturn(true) + whenever(personNotificationIdentifier.isPeopleNotification(b.sbn, b.ranking)) .thenReturn(true) assertEquals( |