Rename method: Drop the "device", it's cleaner

Bug: 218276733
Test: Still builds
Change-Id: I2e6568d103b218ecced5e95723244f6c9d061324
This commit is contained in:
Alan Stokes 2022-03-09 13:46:00 +00:00
parent 03ef64b482
commit e77f6010dd
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public abstract class VirtualizationTestCaseBase extends BaseHostJUnit4Test {
public static void testIfDeviceIsCapable(ITestDevice androidDevice) throws Exception {
assumeTrue("Need an actual TestDevice", androidDevice instanceof TestDevice);
TestDevice testDevice = (TestDevice) androidDevice;
assumeTrue("Requires VM support", testDevice.deviceSupportsMicrodroid());
assumeTrue("Requires VM support", testDevice.supportsMicrodroid());
}
// Run an arbitrary command in the host side and returns the result