Skip to content

Commit ba46af9

Browse files
author
Luna Graysen
authored
Fix typo; change cases of validtors to validators
1 parent 08be0e1 commit ba46af9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/revalidatetest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe('Can be revalidated?', function() {
9696
assert.equal(headers['if-none-match'], '"123456789"');
9797
});
9898

99-
it('skips weak validtors on post', function() {
99+
it('skips weak validators on post', function() {
100100
const postReq = simpleRequestBut({
101101
method: 'POST',
102102
headers: { 'if-none-match': 'W/"weak", "strong", W/"weak2"' },
@@ -107,7 +107,7 @@ describe('Can be revalidated?', function() {
107107
assert.strictEqual(undefined, headers['if-modified-since']);
108108
});
109109

110-
it('skips weak validtors on post 2', function() {
110+
it('skips weak validators on post 2', function() {
111111
const postReq = simpleRequestBut({
112112
method: 'POST',
113113
headers: { 'if-none-match': 'W/"weak"' },
@@ -118,7 +118,7 @@ describe('Can be revalidated?', function() {
118118
assert.strictEqual(undefined, headers['if-modified-since']);
119119
});
120120

121-
it('merges validtors', function() {
121+
it('merges validators', function() {
122122
const postReq = simpleRequestBut({
123123
headers: { 'if-none-match': 'W/"weak", "strong", W/"weak2"' },
124124
});

0 commit comments

Comments
 (0)