Index: LayoutTests/imported/web-platform-tests/IndexedDB/request_bubble-and-capture.htm |
diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/request_bubble-and-capture.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/request_bubble-and-capture.htm |
index 5523cc42177b314322503694146417b9f6790b35..62081d0d607868c86baef563373ff1e8dbb49f33 100644 |
--- a/LayoutTests/imported/web-platform-tests/IndexedDB/request_bubble-and-capture.htm |
+++ b/LayoutTests/imported/web-platform-tests/IndexedDB/request_bubble-and-capture.htm |
@@ -29,20 +29,20 @@ |
open_rq.onsuccess = function(e) { |
log("open_rq.success")(e); |
- assert_object_equals(events, [ |
- "capture db.success", |
- "capture txn.success", |
- "capture rq1.success", |
- "bubble rq1.success", |
+ assert_array_equals(events, [ |
+ "capture db.success", |
+ "capture txn.success", |
+ "capture rq1.success", |
+ "bubble rq1.success", |
- "capture db.error: ConstraintError", |
- "capture txn.error: ConstraintError", |
- "capture rq2.error: ConstraintError", |
- "bubble rq2.error: ConstraintError", |
- "bubble txn.error: ConstraintError", |
- "bubble db.error: ConstraintError", |
+ "capture db.error: ConstraintError", |
+ "capture txn.error: ConstraintError", |
+ "capture rq2.error: ConstraintError", |
+ "bubble rq2.error: ConstraintError", |
+ "bubble txn.error: ConstraintError", |
+ "bubble db.error: ConstraintError", |
- "open_rq.success" |
+ "open_rq.success" |
], |
"events"); |
this.done(); |