Tests: removing workaround for Overview crashing on rotation

am: 715de78e94

Change-Id: I1fefd773c6b9067807ecdc7de5da89ba9d47f5e8
This commit is contained in:
vadimt
2019-06-20 17:42:06 -07:00
committed by android-build-merger
@@ -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();
}
};
}