| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found.html | 
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found.html | 
| index 3ec8c3233c60d3ed6928fb36b71c989c828d3fd3..e07d3d2fe6469758be71c5ec7c0647197d40446b 100644 | 
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found.html | 
| +++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found.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()) | 
|  |