| Index: third_party/WebKit/LayoutTests/bluetooth/writeValue/write-fails.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-fails.html b/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-fails.html
|
| deleted file mode 100644
|
| index f17621a781d420d414c5546ea550b34ea2d09a2b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-fails.html
|
| +++ /dev/null
|
| @@ -1,25 +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('FailingGATTOperationsAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: [errorUUID(0xA0)]}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService(errorUUID(0xA0)))
|
| - .then(service => {
|
| - let tests = Promise.resolve();
|
| - gatt_errors_tests.forEach(testSpec => {
|
| - tests = tests.then(() => service.getCharacteristic(testSpec.uuid))
|
| - .then(characteristic => assert_promise_rejects_with_message(
|
| - characteristic.writeValue(new Uint8Array([1])),
|
| - testSpec.error,
|
| - testSpec.testName));
|
| - });
|
| - return tests;
|
| - });
|
| -});
|
| -</script>
|
|
|