Don't allow stashing in tests for now

Test: TaplTestsQuickstep#testOverviewActions (arbirarily)
Bug: 193521974
Change-Id: Ic2c5c5f9f37ed3f035ec932b4c96fb51598cf899
This commit is contained in:
Tony Wickham 2021-07-15 14:42:33 -10:00
parent 3c4f60900d
commit 9c84d7f3c3
1 changed files with 7 additions and 1 deletions

View File

@ -114,7 +114,13 @@ public class TaskbarStashController {
* Returns whether the user can manually stash the taskbar based on the current device state.
*/
private boolean supportsStashing() {
return !mActivity.isThreeButtonNav();
return !mActivity.isThreeButtonNav()
&& (!Utilities.IS_RUNNING_IN_TEST_HARNESS || supportsStashingForTests());
}
private boolean supportsStashingForTests() {
// TODO: enable this for tests that specifically check stash/unstash behavior.
return false;
}
/**