| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/invalid-characteristic-name.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/invalid-characteristic-name.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/invalid-characteristic-name.html
|
| index a22054e1bc3ca159c63d075dd14b11d8efd0b448..f011c55b0b9f6d066713f35727e0f377c5b626b5 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/invalid-characteristic-name.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/invalid-characteristic-name.html
|
| @@ -5,9 +5,10 @@
|
| <script>
|
| 'use strict';
|
| promise_test(() => {
|
| - testRunner.setBluetoothMockDataSet('HeartRateAdapter');
|
| - return requestDeviceWithKeyDown({filters: [{services: ['heart_rate']}],
|
| - optionalServices: ['generic_access']})
|
| + return setBluetoothFakeAdapter('HeartRateAdapter')
|
| + .then(() => requestDeviceWithKeyDown({
|
| + filters: [{services: ['heart_rate']}],
|
| + optionalServices: ['generic_access']}))
|
| .then(device => device.gatt.connect())
|
| .then(gattServer => gattServer.getPrimaryService('generic_access'))
|
| .then(service => {
|
|
|