Bug 1186857 - Update web-platform-tests expected data. r=jgraham

Comparing scopes for now, added a note to Bug 1201127 to fix this.
This commit is contained in:
Nikhil Marathe 2015-09-08 16:45:42 -07:00
parent d31f90c60e
commit 611cffeb7b
2 changed files with 2 additions and 7 deletions

View File

@ -1,5 +0,0 @@
[unregister-then-register.https.html]
type: testharness
[Unregister then register resolves to the original value if the registration is in use.]
expected: FAIL

View File

@ -48,8 +48,8 @@ async_test(function(t) {
return navigator.serviceWorker.register(worker_url, { scope: scope });
})
.then(function(new_registration) {
assert_equals(registration, new_registration,
'register should resolve to the same value');
assert_equals(registration.scope, new_registration.scope,
'new registration should resolve to the same scope');
service_worker_unregister_and_done(t, scope);
})
.catch(unreached_rejection(t));