[DO NOT MERGE] Fix broken NotificationPanelViewControllerTest

Use an empty Optional for testing

Test: atest NotificationPanelViewControllerTest
Fixes: 205494491
Change-Id: Iea3ab041d14d18138c0403315ab25f91fd87f776
This commit is contained in:
Matt Pietal
2021-11-08 09:44:24 -05:00
parent 3695613b6f
commit dd69009c7c

View File

@@ -308,7 +308,7 @@ public class NotificationPanelViewControllerTest extends SysuiTestCase {
private NotificationsQSContainerController mNotificationsQSContainerController;
@Mock
private FeatureFlags mFeatureFlags;
private Optional<SysUIUnfoldComponent> mSysUIUnfoldComponent;
private Optional<SysUIUnfoldComponent> mSysUIUnfoldComponent = Optional.empty();
private SysuiStatusBarStateController mStatusBarStateController;
private NotificationPanelViewController mNotificationPanelViewController;
private View.AccessibilityDelegate mAccessibiltyDelegate;