diff options
Diffstat (limited to 'boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp')
-rw-r--r-- | boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp b/boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp index 49eefb122a..9789ee6be2 100644 --- a/boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp +++ b/boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp @@ -21,7 +21,7 @@ #include <android/hardware/boot/1.0/IBootControl.h> -#include <VtsHalHidlTargetBaseTest.h> +#include <VtsHalHidlTargetTestBase.h> using ::android::hardware::boot::V1_0::IBootControl; using ::android::hardware::boot::V1_0::CommandResult; @@ -32,10 +32,10 @@ using ::android::hardware::Return; using ::android::sp; // The main test class for the Boot HIDL HAL. -class BootHidlTest : public ::testing::VtsHalHidlTargetBaseTest { +class BootHidlTest : public ::testing::VtsHalHidlTargetTestBase { public: virtual void SetUp() override { - boot = ::testing::VtsHalHidlTargetBaseTest::getService<IBootControl>(); + boot = ::testing::VtsHalHidlTargetTestBase::getService<IBootControl>(); ASSERT_NE(boot, nullptr); } |