Index: LayoutTests/http/tests/serviceworker/getregistrations.html |
diff --git a/LayoutTests/http/tests/serviceworker/getregistrations.html b/LayoutTests/http/tests/serviceworker/getregistrations.html |
index 42b9a95ab034095e564eba517e42b389c374a148..ff054eedff8a2a9f59c003f7b2c80c2a3c21aa04 100644 |
--- a/LayoutTests/http/tests/serviceworker/getregistrations.html |
+++ b/LayoutTests/http/tests/serviceworker/getregistrations.html |
@@ -45,7 +45,7 @@ promise_test(function(t) { |
return navigator.serviceWorker.getRegistrations(); |
}) |
.then(function(value) { |
- assert_array_equals( |
+ assert_registration_array_equals( |
value, |
registrations, |
'getRegistrations should resolve with array of registrations.'); |
@@ -68,7 +68,7 @@ promise_test(function(t) { |
return navigator.serviceWorker.getRegistrations(); |
}) |
.then(function(value) { |
- assert_array_equals( |
+ assert_registration_array_equals( |
value, |
registrations, |
'getRegistrations should resolve with array of registrations.'); |
@@ -128,7 +128,7 @@ promise_test(function(t) { |
return navigator.serviceWorker.getRegistrations(); |
}) |
.then(function(value) { |
- assert_array_equals(value, registrations, |
+ assert_registration_array_equals(value, registrations, |
'getRegistrations should return only the same origin ' + |
'registrations.'); |
channel.port1.postMessage('unregister'); |