Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 963c5c29 authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Fix broken test on devices with cutout

Asserting count to be 0 doesn't make a lot of sense since they
might be inset source the test isn't considering (cutout...)

Bug: 0
Test: self
Change-Id: I36db7b0cd7ab79d80395cd04f76322c153159f44
parent 884aa6af
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -102,7 +102,8 @@ public class InsetsStateControllerTest extends WindowTestsBase {
        getController().getSourceProvider(ITYPE_STATUS_BAR).setWindow(statusBar, null, null);
        getController().getSourceProvider(ITYPE_NAVIGATION_BAR).setWindow(navBar, null, null);
        getController().getSourceProvider(ITYPE_IME).setWindow(ime, null, null);
        assertEquals(0, getController().getInsetsForDispatch(navBar).getSourcesCount());
        assertNull(getController().getInsetsForDispatch(navBar).peekSource(ITYPE_IME));
        assertNull(getController().getInsetsForDispatch(navBar).peekSource(ITYPE_STATUS_BAR));
    }

    @Test