diff options
| author | 2024-11-22 12:34:17 +0000 | |
|---|---|---|
| committer | 2024-11-22 12:34:17 +0000 | |
| commit | 69d6d20877ee4616a8b18683bf9bfdaa8dddbef2 (patch) | |
| tree | 1cb30e208a650c1c816679022380356d423b8f1f | |
| parent | 0f5e234fb8815a3435e6803b7091f48aaf3084e9 (diff) | |
Fix MultiDisplayAutoHideControllerStoreTest
It started failing due to the revert CL ag/30528269
Test: MultiDisplayAutoHideControllerStoreTest
Flag: EXEMPT test fix
Fixes: 380309391
Change-Id: I5fe559276cfbe1df9bf2235247e14e638373a449
| -rw-r--r-- | packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/MultiDisplayAutoHideControllerStoreTest.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/MultiDisplayAutoHideControllerStoreTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/MultiDisplayAutoHideControllerStoreTest.kt index 0b0b1e45d604..90506a1b9a7f 100644 --- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/MultiDisplayAutoHideControllerStoreTest.kt +++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/MultiDisplayAutoHideControllerStoreTest.kt @@ -48,6 +48,11 @@ class MultiDisplayAutoHideControllerStoreTest : SysuiTestCase() { @Before fun addDisplays() = runBlocking { fakeDisplayRepository.addDisplay(DEFAULT_DISPLAY) } + @Before + fun start() { + underTest.start() + } + @Test fun beforeDisplayRemoved_doesNotStopInstances() = testScope.runTest { |