diff options
| author | 2023-10-05 16:32:29 +0000 | |
|---|---|---|
| committer | 2023-10-05 16:32:29 +0000 | |
| commit | 5bafb6f3d49dbda72da288fe27cbaf632b96705b (patch) | |
| tree | 984f25f9cffb0265cbd06fecda469e26530d8ba4 | |
| parent | cae005789acfe3c02865aa6f62422c15e1aeb910 (diff) | |
| parent | 855535aa36d59758842d44f52c4cfc840f4c7f97 (diff) | |
Merge "Make RankingUpdate detailedAssertEquals detailed" into main
| -rw-r--r-- | services/tests/uiservicestests/src/com/android/server/notification/NotificationListenerServiceTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/tests/uiservicestests/src/com/android/server/notification/NotificationListenerServiceTest.java b/services/tests/uiservicestests/src/com/android/server/notification/NotificationListenerServiceTest.java index 7a55143ba13f..c05f81497e57 100644 --- a/services/tests/uiservicestests/src/com/android/server/notification/NotificationListenerServiceTest.java +++ b/services/tests/uiservicestests/src/com/android/server/notification/NotificationListenerServiceTest.java @@ -462,7 +462,7 @@ public class NotificationListenerServiceTest extends UiServiceTestCase { } private void detailedAssertEquals(NotificationRankingUpdate a, NotificationRankingUpdate b) { - assertEquals(a.getRankingMap(), b.getRankingMap()); + detailedAssertEquals(a.getRankingMap(), b.getRankingMap()); } private void detailedAssertEquals(String comment, Ranking a, Ranking b) { |