From 91fbdbb99cb9389ae6be0bdef9c68f36bbd504b3 Mon Sep 17 00:00:00 2001 From: Beverly Date: Fri, 28 Feb 2020 09:52:55 -0500 Subject: [PATCH] Ignore flaky test Bug: 149046729 Test: atest NotificationRankingManagerTest Change-Id: I76049c050cc760faf773ca15cb1a90700b031231 --- .../notification/collection/NotificationRankingManagerTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt index f37836c7a5066..5a6f888b53ed2 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/NotificationRankingManagerTest.kt @@ -40,6 +40,7 @@ import com.android.systemui.statusbar.policy.HeadsUpManager import dagger.Lazy import junit.framework.Assert.assertEquals import org.junit.Before +import org.junit.Ignore import org.junit.Test import org.junit.runner.RunWith import org.mockito.Mockito.mock @@ -195,6 +196,7 @@ class NotificationRankingManagerTest : SysuiTestCase() { assertEquals(listOf(b, a), rankingManager.updateRanking(null, listOf(a, b), "test")) } + @Ignore // TODO: (b/149046729) fix test and re-enable @Test fun testSort_importantPeople() { whenever(sectionsManager.isFilteringEnabled()).thenReturn(true)