| Index: third_party/WebKit/LayoutTests/bluetooth/getPrimaryServices/disconnect-called-during-error-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryServices/disconnect-called-during-error-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/getPrimaryServices/disconnect-called-during-error-with-uuid.html
|
| deleted file mode 100644
|
| index de5a3d8d408c775a2d562fd53b0131144e43c9fb..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryServices/disconnect-called-during-error-with-uuid.html
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| -<script>
|
| -'use strict';
|
| -promise_test(() => {
|
| - return setBluetoothFakeAdapter('HeartRateAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['heart_rate']}],
|
| - optionalServices: ['generic_access', 'battery_service']}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => {
|
| - let promise = assert_promise_rejects_with_message(
|
| - gattServer.getPrimaryServices('battery_service'),
|
| - new DOMException('GATT Server disconnected while retrieving services.',
|
| - 'NetworkError'));
|
| - gattServer.disconnect();
|
| - return promise;
|
| - });
|
| -}, 'disconnect() called during a getPrimaryServices call that fails. Reject ' +
|
| - 'with NetworkError.');
|
| -</script>
|
|
|