Skip to content

Commit

Permalink
“never” to “none”
Browse files Browse the repository at this point in the history
  • Loading branch information
jakearchibald committed Jun 5, 2017
1 parent 60db228 commit ad8943a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>
const updateViaCacheValues = [undefined, 'imports', 'all', 'never'];
const updateViaCacheValues = [undefined, 'imports', 'all', 'none'];
const scriptUrl = 'resources/update-max-aged-worker.py';
const scope = 'resources/blank.html';

Expand Down Expand Up @@ -52,7 +52,7 @@
});
}

// Testing updating registrations
// Testing creating registrations
for (const updateViaCache of updateViaCacheValues) {
const testName = `register-with-updateViaCache-${updateViaCache}`;

Expand Down Expand Up @@ -136,7 +136,7 @@
assert_not_equals(values.mainTime, newValues.mainTime, "Main script should have updated");
assert_equals(values.importTime, newValues.importTime, "Imported script should be the same");
}
else { // 'never'
else { // 'none'
assert_not_equals(values.mainTime, newValues.mainTime, "Main script should have updated");
assert_not_equals(values.importTime, newValues.importTime, "Imported script should have updated");
}
Expand Down

0 comments on commit ad8943a

Please sign in to comment.