Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/consecutive-calls.html |
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/consecutive-calls.html |
similarity index 84% |
rename from third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html |
rename to third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/consecutive-calls.html |
index 30d60860d7e7d77f7104a5a5cc260b856481ea6e..4ce17d7aca7ee099675f446da02a4075c5665073 100644 |
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html |
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/consecutive-calls.html |
@@ -1,17 +1,17 @@ |
<!DOCTYPE html> |
-<script src="../../resources/testharness.js"></script> |
-<script src="../../resources/testharnessreport.js"></script> |
-<script src="../../resources/bluetooth/bluetooth-helpers.js"></script> |
+<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(() => { |
function assert_expected_events(events) { |
assert_equals(events.length, 4); |
assert_equals(events[0], 'chooser-opened(file://)'); |
+ assert_equals(events[1], 'discovering'); |
let idsByName = new AddDeviceEventSet(); |
- idsByName.assert_add_device_event(events[1]); |
+ idsByName.assert_add_device_event(events[2]); |
assert_true(idsByName.has('Heart Rate Device')); |
- assert_equals(events[2], 'discovering'); |
assert_equals(events[3], 'discovery-idle'); |
return idsByName; |
}; |