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
This commit is contained in:
Jorim Jaggi
2020-04-01 22:53:42 +02:00
parent 884aa6afe1
commit 963c5c29bf

View File

@@ -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