Tests: removing workaround for Overview crashing on rotation

Bug: 135287203
Change-Id: I9766f385be5331f56638438822f321ccd1efc920
This commit is contained in:
vadimt
2019-06-20 16:20:36 -07:00
parent b4ff312181
commit 715de78e94
@@ -49,14 +49,12 @@ class PortraitLandscapeRunner implements TestRule {
mTest.mDevice.setOrientationNatural();
mTest.mLauncher.setExpectedRotation(Surface.ROTATION_0);
base.evaluate();
mTest.mLauncher.pressHome();
}
private void evaluateInLandscape() throws Throwable {
mTest.mDevice.setOrientationLeft();
mTest.mLauncher.setExpectedRotation(Surface.ROTATION_90);
base.evaluate();
mTest.mLauncher.pressHome();
}
};
}