Fix broken test NotificatonSectionsFeatureManagerTest

Fixes: 156532263
Test: atest
Change-Id: Ic66cb0230a15263d74399e131e56431635fb789a
This commit is contained in:
Steve Elliott
2020-05-13 19:33:59 -04:00
parent 4d857ccce5
commit 29ea52d194

View File

@@ -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)
}
}