From 29ea52d1943abbe33c3c8fd817842e7fcedf28fe Mon Sep 17 00:00:00 2001 From: Steve Elliott Date: Wed, 13 May 2020 19:33:59 -0400 Subject: [PATCH] Fix broken test NotificatonSectionsFeatureManagerTest Fixes: 156532263 Test: atest Change-Id: Ic66cb0230a15263d74399e131e56431635fb789a --- .../notification/NotificationSectionsFeatureManagerTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 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 ca7a5dbdc36d4..8948fd07379bc 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 @@ -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 4 buckets when people filtering is enabled", - manager!!.getNumberOfBuckets() == 4) + assertTrue("Expecting 5 buckets when people filtering is enabled", + manager!!.getNumberOfBuckets() == 5) } }