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