diff options
| author | 2019-08-02 11:56:12 -0700 | |
|---|---|---|
| committer | 2019-08-02 11:56:12 -0700 | |
| commit | 5c5daf9a9f41b3a67cc4d3c2ce7d06f53ce1d1ee (patch) | |
| tree | f0dca21fcffdd02114972e9fa9118cfffcd9bd45 | |
| parent | 93a1e13cfa714eec28786f285826d6b1227b2b5c (diff) | |
| parent | a39819b8d709db90d94d174cbfe2f29c9c555fd8 (diff) | |
Merge "Fixes breaking test" into qt-r1-dev am: 4c1435a8eb am: cab5f56182
am: a39819b8d7
Change-Id: I9dca0c59e2469cf187c3a4dcaf4ec203a98e3ab0
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutTest.java b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutTest.java index 9a7a27d10365..31054260eb15 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutTest.java +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutTest.java @@ -137,7 +137,7 @@ public class NotificationStackScrollLayoutTest extends SysuiTestCase { mDependency.injectTestDependency( NotificationBlockingHelperManager.class, mBlockingHelperManager); - mDependency.injectTestDependency(StatusBarStateController.class, mBarState); + mDependency.injectTestDependency(SysuiStatusBarStateController.class, mBarState); mDependency.injectTestDependency(MetricsLogger.class, mMetricsLogger); mDependency.injectTestDependency(NotificationRemoteInputManager.class, mRemoteInputManager); @@ -163,7 +163,7 @@ public class NotificationStackScrollLayoutTest extends SysuiTestCase { mock(DynamicPrivacyController.class), mock(ConfigurationController.class), mock(ActivityStarterDelegate.class), - mock(StatusBarStateController.class), + mock(SysuiStatusBarStateController.class), mHeadsUpManager, mKeyguardBypassController, new FalsingManagerFake()); |