diff options
author | Yuexi Ma <yuexima@google.com> | 2017-03-10 00:42:13 -0800 |
---|---|---|
committer | Yuexi Ma <yuexima@google.com> | 2017-03-10 00:42:13 -0800 |
commit | 6b8720110bf2d40ac1364c364a85c31b358889f1 (patch) | |
tree | 1451f3ba5872d6033e56fd3eef6af8653aede89e /bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp | |
parent | cdca05557df85742a8fe7e15b8d78cd60b6a5986 (diff) |
Change vts target base test class name
Test: make vts succeed, vts kernel tests and nfc hal tests passed
Change-Id: I38ae6cc940d0f17bb3352f360efdf9c70697c76b
Diffstat (limited to 'bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp')
-rw-r--r-- | bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp b/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp index c8c7cb5832..9a4efae0ba 100644 --- a/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp +++ b/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp @@ -23,7 +23,7 @@ #include <hardware/bluetooth.h> #include <utils/Log.h> -#include <VtsHalHidlTargetBaseTest.h> +#include <VtsHalHidlTargetTestBase.h> #include <condition_variable> #include <mutex> #include <queue> @@ -117,11 +117,11 @@ class ThroughputLogger { }; // The main test class for Bluetooth HIDL HAL. -class BluetoothHidlTest : public ::testing::VtsHalHidlTargetBaseTest { +class BluetoothHidlTest : public ::testing::VtsHalHidlTargetTestBase { public: virtual void SetUp() override { // currently test passthrough mode only - bluetooth = ::testing::VtsHalHidlTargetBaseTest::getService<IBluetoothHci>(); + bluetooth = ::testing::VtsHalHidlTargetTestBase::getService<IBluetoothHci>(); ASSERT_NE(bluetooth, nullptr); ALOGI("%s: getService() for bluetooth is %s", __func__, bluetooth->isRemote() ? "remote" : "local"); |