summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'device/bluetooth/bluetooth_gatt_chromeos_unittest.cc')
-rw-r--r--device/bluetooth/bluetooth_gatt_chromeos_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc b/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
index 636b467..19f110f 100644
--- a/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
+++ b/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
@@ -1045,19 +1045,19 @@ TEST_F(BluetoothGattChromeOSTest, GattCharacteristicProperties) {
BluetoothGattCharacteristic *characteristic = service->GetCharacteristic(
fake_bluetooth_gatt_characteristic_client_->
GetBodySensorLocationPath().value());
- EXPECT_EQ(BluetoothGattCharacteristic::kPropertyRead,
+ EXPECT_EQ(BluetoothGattCharacteristic::PROPERTY_READ,
characteristic->GetProperties());
characteristic = service->GetCharacteristic(
fake_bluetooth_gatt_characteristic_client_->
GetHeartRateControlPointPath().value());
- EXPECT_EQ(BluetoothGattCharacteristic::kPropertyWrite,
+ EXPECT_EQ(BluetoothGattCharacteristic::PROPERTY_WRITE,
characteristic->GetProperties());
characteristic = service->GetCharacteristic(
fake_bluetooth_gatt_characteristic_client_->
GetHeartRateMeasurementPath().value());
- EXPECT_EQ(BluetoothGattCharacteristic::kPropertyNotify,
+ EXPECT_EQ(BluetoothGattCharacteristic::PROPERTY_NOTIFY,
characteristic->GetProperties());
}