diff --git a/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp b/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp index ce158750f2..c8c7cb5832 100644 --- a/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp +++ b/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp @@ -121,7 +121,7 @@ class BluetoothHidlTest : public ::testing::VtsHalHidlTargetBaseTest { public: virtual void SetUp() override { // currently test passthrough mode only - bluetooth = testing::VtsHalHidlTargetBaseTest::getService(); + bluetooth = ::testing::VtsHalHidlTargetBaseTest::getService(); ASSERT_NE(bluetooth, nullptr); ALOGI("%s: getService() for bluetooth is %s", __func__, bluetooth->isRemote() ? "remote" : "local"); diff --git a/ir/1.0/vts/functional/VtsHalIrV1_0TargetTest.cpp b/ir/1.0/vts/functional/VtsHalIrV1_0TargetTest.cpp index 1dd040565f..605eabb2ad 100644 --- a/ir/1.0/vts/functional/VtsHalIrV1_0TargetTest.cpp +++ b/ir/1.0/vts/functional/VtsHalIrV1_0TargetTest.cpp @@ -34,7 +34,7 @@ using ::android::sp; class ConsumerIrHidlTest : public ::testing::VtsHalHidlTargetBaseTest { public: virtual void SetUp() override { - ir = testing::VtsHalHidlTargetBaseTest::getService(); + ir = ::testing::VtsHalHidlTargetBaseTest::getService(); ASSERT_NE(ir, nullptr); } diff --git a/nfc/1.0/vts/functional/VtsHalNfcV1_0TargetTest.cpp b/nfc/1.0/vts/functional/VtsHalNfcV1_0TargetTest.cpp index ae21f9a851..5b6089de11 100644 --- a/nfc/1.0/vts/functional/VtsHalNfcV1_0TargetTest.cpp +++ b/nfc/1.0/vts/functional/VtsHalNfcV1_0TargetTest.cpp @@ -59,7 +59,7 @@ using ::android::sp; class NfcHidlTest : public ::testing::VtsHalHidlTargetBaseTest { public: virtual void SetUp() override { - nfc_ = testing::VtsHalHidlTargetBaseTest::getService(); + nfc_ = ::testing::VtsHalHidlTargetBaseTest::getService(); ASSERT_NE(nfc_, nullptr); nfc_cb_ = new NfcClientCallback(*this); diff --git a/radio/1.0/vts/functional/radio_hidl_hal_test.cpp b/radio/1.0/vts/functional/radio_hidl_hal_test.cpp index d1ab06a192..3bb786d1b9 100644 --- a/radio/1.0/vts/functional/radio_hidl_hal_test.cpp +++ b/radio/1.0/vts/functional/radio_hidl_hal_test.cpp @@ -17,7 +17,7 @@ #include void RadioHidlTest::SetUp() { - radio = testing::VtsHalHidlTargetBaseTest::getService(hidl_string("rild")); + radio = ::testing::VtsHalHidlTargetBaseTest::getService(hidl_string("rild")); ASSERT_NE(radio, nullptr); radioRsp = new RadioResponse(*this); diff --git a/wifi/1.0/vts/functional/wifi_hidl_test_utils.cpp b/wifi/1.0/vts/functional/wifi_hidl_test_utils.cpp index 820a75de08..9042075eb6 100644 --- a/wifi/1.0/vts/functional/wifi_hidl_test_utils.cpp +++ b/wifi/1.0/vts/functional/wifi_hidl_test_utils.cpp @@ -43,7 +43,7 @@ void stopFramework() { void startFramework() { ASSERT_EQ(std::system("svc wifi enable"), 0); } sp getWifi() { - sp wifi = testing::VtsHalHidlTargetBaseTest::getService(); + sp wifi = ::testing::VtsHalHidlTargetBaseTest::getService(); return wifi; }