| Index: third_party/WebKit/LayoutTests/bluetooth/script-tests/gatt-op-device-reconnects-during-success.js
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/script-tests/gatt-op-device-reconnects-during-success.js b/third_party/WebKit/LayoutTests/bluetooth/script-tests/gatt-op-device-reconnects-during-success.js
|
| index 053f726cb95325693303e747fb4f498e3482c74a..d035bd3e73472a0cc7c9b09598022c3d85241b90 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/script-tests/gatt-op-device-reconnects-during-success.js
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/script-tests/gatt-op-device-reconnects-during-success.js
|
| @@ -9,7 +9,10 @@ promise_test(() => {
|
| .then(characteristic => {
|
| let disconnected = eventPromise(characteristic.service.device, 'gattserverdisconnected');
|
| let promise = assert_promise_rejects_with_message(
|
| - characteristic.CALLS([readValue()| writeValue(val)]),
|
| + characteristic.CALLS([
|
| + readValue()|
|
| + writeValue(val)|
|
| + startNotifications()]),
|
| new DOMException('GATT Server disconnected while performing a GATT operation.',
|
| 'NetworkError'));
|
| return disconnected.then(() => characteristic.service.device.gatt.connect())
|
|
|