Rename method: Drop the "device", it's cleaner
Bug: 218276733 Test: Still builds Change-Id: I2e6568d103b218ecced5e95723244f6c9d061324
This commit is contained in:
parent
03ef64b482
commit
e77f6010dd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue