| Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/device-reconnects-during-success.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/device-reconnects-during-success.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/device-reconnects-during-success.html
|
| index ceb5fa4691bfa45e2f3ae4413db3ec646fa4fdc4..dd57748b1540dcabf2f7743758bbe2ad86f98e37 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/device-reconnects-during-success.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/device-reconnects-during-success.html
|
| @@ -14,7 +14,9 @@ promise_test(() => {
|
| let disconnected = eventPromise(gatt.device, 'gattserverdisconnected');
|
| let promise = assert_promise_rejects_with_message(
|
| gatt.getPrimaryServices(),
|
| - 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'));
|
| return disconnected.then(() => gatt.connect()).then(() => promise);
|
| });
|
|
|