| Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/reconnect-during-success.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/reconnect-during-success.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/reconnect-during-success.html
|
| index 336040e406e1bdb26d7b8ced4eedb7ffa11d1710..5ee0904453c1f7b4a6b3e4883f4dfeab3d2eebf2 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/reconnect-during-success.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/reconnect-during-success.html
|
| @@ -12,7 +12,9 @@ promise_test(() => {
|
| .then(gattServer => {
|
| let promise = assert_promise_rejects_with_message(
|
| gattServer.getPrimaryService('heart_rate'),
|
| - new DOMException('GATT Server disconnected while retrieving services.',
|
| + new DOMException('GATT Server is disconnected. ' +
|
| + 'Cannot retrieve services. ' +
|
| + '(Re)connect first with `device.gatt.connect`.',
|
| 'NetworkError'));
|
| gattServer.disconnect();
|
| return gattServer.connect().then(() => promise);
|
|
|