| Index: device/bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc
|
| diff --git a/device/bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc b/device/bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc
|
| index fecb8fe5792bb147b53664fefa475f15baab41ae..c0dd31603ef9a78035192322c4149410bade17c0 100644
|
| --- a/device/bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc
|
| +++ b/device/bluetooth/dbus/bluetooth_gatt_application_service_provider_unittest.cc
|
| @@ -373,8 +373,9 @@ TEST_F(BluetoothGattApplicationServiceProviderTest, SendValueChanged) {
|
| app_provider.get(), "characteristic0", kServicePath);
|
|
|
| std::vector<uint8_t> kNewValue = {0x13, 0x37, 0xba, 0xad, 0xf0};
|
| - app_provider->SendValueChanged(dbus::ObjectPath(kCharacteristicPath),
|
| - kNewValue);
|
| + app_provider->SendValueChanged(dbus::ObjectPath(),
|
| + dbus::ObjectPath(kCharacteristicPath),
|
| + kNewValue, false);
|
| // TODO(rkc): Write a test implementation of dbus::Bus and
|
| // dbus::ExportedObject so we can capture the actual signal that is sent and
|
| // verify its contents.
|
|
|