| Index: third_party/WebKit/LayoutTests/bluetooth/server/connect/garbage-collection-ran-during-success.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/connect/garbage-collection-ran-during-success.html b/third_party/WebKit/LayoutTests/bluetooth/server/connect/garbage-collection-ran-during-success.html
|
| index 60156c1b9aca71ffcd04a78e1f97f29ddaf41dc5..00b5c0a28f5659546fc03edb50ff32c94bff26cd 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/server/connect/garbage-collection-ran-during-success.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/server/connect/garbage-collection-ran-during-success.html
|
| @@ -2,21 +2,16 @@
|
| <script src="../../../resources/testharness.js"></script>
|
| <script src="../../../resources/testharnessreport.js"></script>
|
| <script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| -<script src="../../../resources/bluetooth/web-bluetooth-test.js"></script>
|
| -<script src="../../../resources/mojo-helpers.js"></script>
|
| <script>
|
| 'use strict';
|
| promise_test(() => {
|
| - return getDiscoveredHealthThermometerDevice()
|
| - .then(([device, fake_peripheral]) => {
|
| - return fake_peripheral.setNextGATTConnectionResponse({code: HCI_SUCCESS})
|
| - .then(() => {
|
| - // Don't return the promise and let |device| go out of scope
|
| - // so that it gets garbage collected.
|
| - device.gatt.connect();
|
| - });
|
| + return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
|
| + .then(() => requestDeviceWithKeyDown({
|
| + filters: [{services: ['health_thermometer']}]}))
|
| + .then(device => {
|
| + device.gatt.connect();
|
| })
|
| - .then(runGarbageCollection)
|
| + .then(runGarbageCollection);
|
| }, 'Garbage Collection ran during a connect call that succeeds. ' +
|
| 'Should not crash.');
|
| </script>
|
|
|