summaryrefslogtreecommitdiff
path: root/boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp
diff options
context:
space:
mode:
authorYuexi Ma <yuexima@google.com>2017-03-10 00:44:45 -0800
committerYuexi Ma <yuexima@google.com>2017-03-10 21:14:48 +0000
commited2bb4e8f851688c09f7639a9183b1285aa0967c (patch)
tree35d3b55697123e0b07ad556dc988899ae706fd41 /boot/1.0/vts/functional/VtsHalBootV1_0TargetTest.cpp
parent5e1e202bcc25d66890864ac8b73533945ba14d78 (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.cpp6
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);
}