From 29c64fb09614a560635a9106217ad323aa31a411 Mon Sep 17 00:00:00 2001 From: Alison Cichowlas Date: Thu, 25 Oct 2018 09:32:16 -0400 Subject: [PATCH] Suppress flaky test Test: This is it Bug: 118400112 Change-Id: I60be79618f4fd5b22438d47f1b8ce0756d486dee --- .../android/systemui/statusbar/NonPhoneDependencyTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/NonPhoneDependencyTest.java b/packages/SystemUI/tests/src/com/android/systemui/statusbar/NonPhoneDependencyTest.java index fe0a7c78def10..2e280d336aabf 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/NonPhoneDependencyTest.java +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/NonPhoneDependencyTest.java @@ -19,7 +19,6 @@ package com.android.systemui.statusbar; import static org.junit.Assert.assertFalse; import android.os.Handler; -import android.os.Looper; import android.support.test.filters.SmallTest; import android.testing.AndroidTestingRunner; import android.testing.TestableLooper; @@ -38,6 +37,7 @@ import com.android.systemui.statusbar.phone.StatusBarWindowController; import com.android.systemui.statusbar.policy.HeadsUpManager; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; @@ -51,6 +51,7 @@ import org.mockito.MockitoAnnotations; @SmallTest @RunWith(AndroidTestingRunner.class) @TestableLooper.RunWithLooper(setAsMainLooper = true) +@Ignore("b/118400112") public class NonPhoneDependencyTest extends SysuiTestCase { @Mock private NotificationPresenter mPresenter; @Mock private NotificationListContainer mListContainer; @@ -69,6 +70,7 @@ public class NonPhoneDependencyTest extends SysuiTestCase { } @Test + @Ignore("b/118400112") public void testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager() { mDependency.injectMockDependency(ShadeController.class); NotificationEntryManager entryManager = Dependency.get(NotificationEntryManager.class);