| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/correct-characteristics.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/correct-characteristics.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/correct-characteristics.html
|
| index 043b050472bd245fc0b98df1a0f05c4f217d5250..02f2f6ea4f835e9e7d8dfc106276c8745849bc47 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/correct-characteristics.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/correct-characteristics.html
|
| @@ -5,8 +5,9 @@
|
| <script>
|
| 'use strict';
|
| promise_test(() => {
|
| - testRunner.setBluetoothMockDataSet('HeartRateAdapter');
|
| - return requestDeviceWithKeyDown({filters: [{services: ['heart_rate']}]})
|
| + return setBluetoothFakeAdapter('HeartRateAdapter')
|
| + .then(() => requestDeviceWithKeyDown({
|
| + filters: [{services: ['heart_rate']}]}))
|
| .then(device => device.gatt.connect())
|
| .then(gattServer => gattServer.getPrimaryService('heart_rate'))
|
| .then(service => service.getCharacteristics('body_sensor_location'))
|
|
|