summaryrefslogtreecommitdiffstats
path: root/dom/cache/test/mochitest/test_cache_restart.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/cache/test/mochitest/test_cache_restart.html')
-rw-r--r--dom/cache/test/mochitest/test_cache_restart.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/cache/test/mochitest/test_cache_restart.html b/dom/cache/test/mochitest/test_cache_restart.html
index bebb45c093..2472f7ab4e 100644
--- a/dom/cache/test/mochitest/test_cache_restart.html
+++ b/dom/cache/test/mochitest/test_cache_restart.html
@@ -22,7 +22,7 @@ function setupTestIframe() {
}
function resetStorage() {
- return new Promise(function(resolve, reject) {
+ return new Promise(function(resolve) {
var qms = SpecialPowers.Services.qms;
var principal = SpecialPowers.wrap(document).nodePrincipal;
var request = qms.resetStoragesForPrincipal(principal);
@@ -47,9 +47,9 @@ SpecialPowers.pushPrefEnv({
}).then(function() {
return resetStorage();
}).then(function() {
- return cache.match(url).then(function(resp) {
+ return cache.match(url).then(function() {
ok(false, "old cache reference should not work after reset");
- }).catch(function(err) {
+ }).catch(function() {
ok(true, "old cache reference should not work after reset");
});
}).then(function() {