Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: LayoutTests/http/tests/serviceworker/unregister.html

Issue 550093002: SWRegistration::unregister returns false when the registration is already unregistered. (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@unregister_resolve_correctly
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/unregister.html
diff --git a/LayoutTests/http/tests/serviceworker/unregister.html b/LayoutTests/http/tests/serviceworker/unregister.html
index b9723f46b6b4840ca22499a95b690030d1d0ff6b..d68122fb3d9d3258cda68941bae85ab0d3048806 100644
--- a/LayoutTests/http/tests/serviceworker/unregister.html
+++ b/LayoutTests/http/tests/serviceworker/unregister.html
@@ -28,11 +28,8 @@ async_test(function(t) {
return registration.unregister();
})
.then(function(value) {
- // FIXME: Uncomment after applied the first patch.
- // https://codereview.chromium.org/554573002
- // See: https://crbug.com/390894#c16
- // assert_equals(value, false,
- // 'unregistering twice should resolve with false');
+ assert_equals(value, false,
+ 'unregistering twice should resolve with false');
t.done();
})
.catch(unreached_rejection(t));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698