Index: device/bluetooth/test/bluetooth_test_mac.mm |
diff --git a/device/bluetooth/test/bluetooth_test_mac.mm b/device/bluetooth/test/bluetooth_test_mac.mm |
index 744747bf49adc48f1a7c2ee9231ed8b84f4afe3f..0b02ff47e28137dc1680b8465ef726f161223b34 100644 |
--- a/device/bluetooth/test/bluetooth_test_mac.mm |
+++ b/device/bluetooth/test/bluetooth_test_mac.mm |
@@ -40,13 +40,13 @@ CBPeripheral* CreateMockPeripheral(NSString* peripheral_identifier) { |
NSDictionary* CreateAdvertisementData(NSString* name, NSArray* uuids) { |
NSMutableDictionary* advertisement_data = |
[NSMutableDictionary dictionaryWithDictionary:@{ |
- @"CBAdvertisementDataLocalNameKey" : name, |
- @"CBAdvertisementDataServiceDataKey" : [NSDictionary dictionary], |
- @"CBAdvertisementDataIsConnectable" : @(YES), |
+ CBAdvertisementDataLocalNameKey : name, |
+ CBAdvertisementDataServiceDataKey : [NSDictionary dictionary], |
+ CBAdvertisementDataIsConnectable : @(YES), |
}]; |
if (uuids) |
[advertisement_data setObject:uuids |
- forKey:@"CBAdvertisementDataServiceUUIDsKey"]; |
+ forKey:CBAdvertisementDataServiceUUIDsKey]; |
return advertisement_data; |
} |