| Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnected-device-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnected-device-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnected-device-with-uuid.html
|
| index c7ce6ea741f8c1e48abe339577857edce785086b..3eac0fd0af203f263763290779ebc82384cf8d17 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnected-device-with-uuid.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/disconnected-device-with-uuid.html
|
| @@ -10,7 +10,9 @@ promise_test(() => {
|
| filters: [{services: ['heart_rate']}]}))
|
| .then(device => assert_promise_rejects_with_message(
|
| device.gatt.getPrimaryServices('heart_rate'),
|
| - new DOMException('GATT Server is disconnected. Cannot retrieve services.',
|
| + new DOMException('GATT Server is disconnected. ' +
|
| + 'Cannot retrieve services. ' +
|
| + '(Re)connect first with `device.gatt.connect`.',
|
| 'NetworkError')));
|
| }, 'getPrimaryServices called before connecting. Reject with NetworkError.');
|
| </script>
|
|
|