diff options
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"); |