diff options
| author | 2020-07-15 20:13:43 +0000 | |
|---|---|---|
| committer | 2020-07-15 20:13:43 +0000 | |
| commit | 07a4467845466d0c6c7c5c1186dadfaa14553cf3 (patch) | |
| tree | e60b5e3fdfea9861b2415b38b399d051923c8f37 | |
| parent | 86b66e81b4237a40a600456b6816c0a918991bd9 (diff) | |
| parent | c95406fce1b62c44f4f195b2d518e23e4a64bed3 (diff) | |
DO NOT MERGE Fix broken test am: c8daad6962 am: c95406fce1
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12154028
Change-Id: I3c3080a5ed4807fa80ffb527facb3b88cf8addda
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/NotificationSectionsFeatureManagerTest.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/NotificationSectionsFeatureManagerTest.kt b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/NotificationSectionsFeatureManagerTest.kt index 8948fd07379b..da77fbcea294 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/NotificationSectionsFeatureManagerTest.kt +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/NotificationSectionsFeatureManagerTest.kt @@ -64,8 +64,8 @@ class NotificationSectionsFeatureManagerTest : SysuiTestCase() { DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_USE_PEOPLE_FILTERING, "false", false) assertFalse("People filtering should be disabled", manager!!.isFilteringEnabled()) - assertTrue("Expecting 2 buckets when people filtering is disabled", - manager!!.getNumberOfBuckets() == 2) + assertTrue("Expecting 5 buckets when people filtering is disabled", + manager!!.getNumberOfBuckets() == 5) } @Test @@ -74,7 +74,7 @@ class NotificationSectionsFeatureManagerTest : SysuiTestCase() { DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_USE_PEOPLE_FILTERING, "true", false) assertTrue("People filtering should be enabled", manager!!.isFilteringEnabled()) - assertTrue("Expecting 5 buckets when people filtering is enabled", - manager!!.getNumberOfBuckets() == 5) + assertTrue("Expecting 6 buckets when people filtering is enabled", + manager!!.getNumberOfBuckets() == 6) } } |