| Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/reconnect-during-error-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/reconnect-during-error-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/reconnect-during-error-with-uuid.html
|
| index 2220befb30e1ca795a85eb7a360a51c8959312b9..f3c140cadf976ff041c1a0dad1519ed308848d61 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/reconnect-during-error-with-uuid.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/reconnect-during-error-with-uuid.html
|
| @@ -13,7 +13,9 @@ promise_test(() => {
|
| .then(gattServer => {
|
| let promise = assert_promise_rejects_with_message(
|
| gattServer.getPrimaryServices('battery_service'),
|
| - 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);
|
|
|