| Index: components/arc/bluetooth/arc_bluetooth_bridge_unittest.cc
|
| diff --git a/components/arc/bluetooth/arc_bluetooth_bridge_unittest.cc b/components/arc/bluetooth/arc_bluetooth_bridge_unittest.cc
|
| index 7953d1b1afd83fc983cbf3f2c9ce434d5e4d96c0..3796352bae163ceb3530cdd09b17e419323c3191 100644
|
| --- a/components/arc/bluetooth/arc_bluetooth_bridge_unittest.cc
|
| +++ b/components/arc/bluetooth/arc_bluetooth_bridge_unittest.cc
|
| @@ -135,11 +135,17 @@ TEST_F(ArcBluetoothBridgeTest, LEDeviceFound) {
|
|
|
| EXPECT_EQ(std::string(bluez::FakeBluetoothDeviceClient::kLowEnergyAddress),
|
| addr->To<std::string>());
|
| - EXPECT_EQ(1u, adv_data.size());
|
| + EXPECT_EQ(2u, adv_data.size());
|
|
|
| EXPECT_TRUE(adv_data[0]->is_local_name());
|
| EXPECT_EQ(std::string(bluez::FakeBluetoothDeviceClient::kLowEnergyName),
|
| adv_data[0]->get_local_name().To<std::string>());
|
| +
|
| + EXPECT_TRUE(adv_data[1]->is_service_uuids());
|
| + EXPECT_EQ(1u, adv_data[1]->get_service_uuids().size());
|
| + EXPECT_EQ(device::BluetoothUUID(
|
| + bluez::FakeBluetoothGattServiceClient::kHeartRateServiceUUID),
|
| + adv_data[1]->get_service_uuids()[0].To<device::BluetoothUUID>());
|
| }
|
|
|
| // Invoke GetGattDB and check correctness of the GattDB sent via arc bridge.
|
|
|