Index: device/bluetooth/bluetooth_gatt_chromeos_unittest.cc |
diff --git a/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc b/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc |
index 636b4672c51ac33263fe5573253b9610dd50afd9..19f110f9d558e63b33bdb237e5c0a53456c275f2 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()); |
} |