diff options
| author | 2020-07-15 20:06:31 +0000 | |
|---|---|---|
| committer | 2020-07-15 20:06:31 +0000 | |
| commit | c95406fce1b62c44f4f195b2d518e23e4a64bed3 (patch) | |
| tree | 1286dc4db5cf0e46ceb700107fe8ef0d3efb2038 | |
| parent | 3b3345bac374d3529c5ead6b0a0fb9a40ae1da05 (diff) | |
| parent | c8daad69620f265555b9cbe36c1c2c6a288ef2aa (diff) | |
DO NOT MERGE Fix broken test am: c8daad6962
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12154028
Change-Id: I3ffa5f34495c0a3ac818d41a45ac29936d6f1bc5
| -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) } } |