| Index: third_party/WebKit/LayoutTests/bluetooth/characteristicProperties.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/characteristicProperties.html b/third_party/WebKit/LayoutTests/bluetooth/characteristicProperties.html
|
| index bbaf8cdcd5e3cbaca281e49f284adfd78c55506c..b119a403291dfe86ffbfeb142c7fa0d81ea0dbdb 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/characteristicProperties.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/characteristicProperties.html
|
| @@ -8,8 +8,9 @@ test(t => { assert_true(window.testRunner instanceof Object); t.done(); },
|
| 'window.testRunner is required for the following tests.');
|
|
|
| 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 => {
|
|
|