From e77f6010dd540ed7c5670e702c2d79b7ba3c24ee Mon Sep 17 00:00:00 2001 From: Alan Stokes Date: Wed, 9 Mar 2022 13:46:00 +0000 Subject: [PATCH] Rename method: Drop the "device", it's cleaner Bug: 218276733 Test: Still builds Change-Id: I2e6568d103b218ecced5e95723244f6c9d061324 --- .../java/android/virt/test/VirtualizationTestCaseBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hostside/helper/java/android/virt/test/VirtualizationTestCaseBase.java b/tests/hostside/helper/java/android/virt/test/VirtualizationTestCaseBase.java index ec8a3fb0..8e86fd19 100644 --- a/tests/hostside/helper/java/android/virt/test/VirtualizationTestCaseBase.java +++ b/tests/hostside/helper/java/android/virt/test/VirtualizationTestCaseBase.java @@ -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