diff options
author | Yuexi Ma <yuexima@google.com> | 2017-03-10 00:44:45 -0800 |
---|---|---|
committer | Yuexi Ma <yuexima@google.com> | 2017-03-10 21:14:48 +0000 |
commit | ed2bb4e8f851688c09f7639a9183b1285aa0967c (patch) | |
tree | 35d3b55697123e0b07ad556dc988899ae706fd41 /boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp | |
parent | 5e1e202bcc25d66890864ac8b73533945ba14d78 (diff) |
Change vts target base test class name
Test: make vts succeed, vts kernel tests and nfc hal tests passed
Change-Id: I95f10ad7a66f261c9030357edd411fe6d94150e8
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); } |