| Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnect-called-during-success.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnect-called-during-success.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnect-called-during-success.html
|
| index 56cd37cc520d5560e91343fffecaa85de62b9dfa..21995d129dd6c50316bf246284169a6312343234 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnect-called-during-success.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnect-called-during-success.html
|
| @@ -13,7 +13,9 @@ promise_test(() => {
|
| .then(gattServer => {
|
| let promise = assert_promise_rejects_with_message(
|
| gattServer.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'));
|
| gattServer.disconnect();
|
| return promise;
|
|
|