| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found-with-uuid.html
|
| deleted file mode 100644
|
| index 5abe37e8762b72feffed16a63d14aa651e067fa9..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/characteristics-found-with-uuid.html
|
| +++ /dev/null
|
| @@ -1,27 +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']}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('heart_rate'))
|
| - .then(service => Promise.all([
|
| - service.getCharacteristics(body_sensor_location.alias),
|
| - service.getCharacteristics(body_sensor_location.name),
|
| - service.getCharacteristics(body_sensor_location.uuid)]))
|
| - .then(characteristics_arrays => {
|
| - characteristics_arrays.forEach(characteristics => {
|
| - assert_equals(characteristics.length, 2);
|
| - assert_equals(characteristics[0].uuid,
|
| - BluetoothUUID.getCharacteristic('body_sensor_location'));
|
| - assert_equals(characteristics[1].uuid,
|
| - BluetoothUUID.getCharacteristic('body_sensor_location'));
|
| - });
|
| - });
|
| -}, 'Find characteristics with UUID in service.');
|
| -</script>
|
|
|