| Index: third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html b/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
|
| index 0eb45a8edf6a530f5c363d23c4d9aeb28d5304b3..3be98528b5cff5a72f02eb968418ebb3d0cdc235 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
|
| @@ -11,10 +11,9 @@
|
| optionalServices: [request_disconnection_service_uuid]
|
| }))
|
| .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService(request_disconnection_service_uuid))
|
| - .then(service => service.getCharacteristic(request_disconnection_characteristic_uuid))
|
| + .then(gattServer => get_request_disconnection(gattServer))
|
| .then(requestDisconnection => {
|
| - requestDisconnection.writeValue(new Uint8Array([0]));
|
| + requestDisconnection();
|
| requestDisconnection = undefined;
|
| return runGarbageCollection();
|
| // Wait 50ms after the GC runs for the disconnection event to come back.
|
|
|