| Index: third_party/WebKit/LayoutTests/bluetooth/service/getCharacteristic/reconnect-during.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/service/getCharacteristic/reconnect-during.html b/third_party/WebKit/LayoutTests/bluetooth/service/getCharacteristic/reconnect-during.html
|
| index 285bac55a9261aec3b6498b97a7dbfd0547a94d0..5a357a228428107369b1424a0bf8fc74b4a82d05 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/service/getCharacteristic/reconnect-during.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/service/getCharacteristic/reconnect-during.html
|
| @@ -15,7 +15,8 @@ promise_test(() => {
|
| let promise = assert_promise_rejects_with_message(
|
| service.getCharacteristic('heart_rate_measurement'),
|
| new DOMException(
|
| - 'GATT Server disconnected while retrieving characteristics.',
|
| + 'GATT Server is disconnected. Cannot retrieve characteristics. ' +
|
| + '(Re)connect first with `device.gatt.connect`.',
|
| 'NetworkError'));
|
| gattServer.disconnect();
|
| return gattServer.connect().then(() => promise);
|
|
|