| Index: chrome/test/data/extensions/api_test/bluetooth_low_energy/create_descriptor/runtest.js
|
| diff --git a/chrome/test/data/extensions/api_test/bluetooth_low_energy/create_descriptor/runtest.js b/chrome/test/data/extensions/api_test/bluetooth_low_energy/create_descriptor/runtest.js
|
| index 13b1b6969b60920a2f42e8cd66f391e758f59aa8..ff84148cca346c0e9ac889518827b2c7a3ab0520 100644
|
| --- a/chrome/test/data/extensions/api_test/bluetooth_low_energy/create_descriptor/runtest.js
|
| +++ b/chrome/test/data/extensions/api_test/bluetooth_low_energy/create_descriptor/runtest.js
|
| @@ -24,13 +24,14 @@ chrome.bluetoothLowEnergy.createService(service, function(serviceId) {
|
| return;
|
|
|
| var characteristic = { uuid: '00001234-0000-1000-8000-00805f9b34fa',
|
| - properties: ['read']};
|
| + properties: ['read'] };
|
| chrome.bluetoothLowEnergy.createCharacteristic(characteristic, serviceId,
|
| function(characteristicId) {
|
| if (failOnError(characteristicId))
|
| return;
|
|
|
| - var descriptor = { uuid: '00001234-0000-1000-8000-00805f9b34fc' };
|
| + var descriptor = { uuid: '00001234-0000-1000-8000-00805f9b34fc',
|
| + permissions: ['read'] };
|
| // Invalid characteristic ID.
|
| chrome.bluetoothLowEnergy.createDescriptor(descriptor,
|
| 'invalidCharacteristicId', function(descriptorId) {
|
|
|