@@ -96,7 +96,7 @@ describe('Can be revalidated?', function() {
96
96
assert . equal ( headers [ 'if-none-match' ] , '"123456789"' ) ;
97
97
} ) ;
98
98
99
- it ( 'skips weak validtors on post' , function ( ) {
99
+ it ( 'skips weak validators on post' , function ( ) {
100
100
const postReq = simpleRequestBut ( {
101
101
method : 'POST' ,
102
102
headers : { 'if-none-match' : 'W/"weak", "strong", W/"weak2"' } ,
@@ -107,7 +107,7 @@ describe('Can be revalidated?', function() {
107
107
assert . strictEqual ( undefined , headers [ 'if-modified-since' ] ) ;
108
108
} ) ;
109
109
110
- it ( 'skips weak validtors on post 2' , function ( ) {
110
+ it ( 'skips weak validators on post 2' , function ( ) {
111
111
const postReq = simpleRequestBut ( {
112
112
method : 'POST' ,
113
113
headers : { 'if-none-match' : 'W/"weak"' } ,
@@ -118,7 +118,7 @@ describe('Can be revalidated?', function() {
118
118
assert . strictEqual ( undefined , headers [ 'if-modified-since' ] ) ;
119
119
} ) ;
120
120
121
- it ( 'merges validtors ' , function ( ) {
121
+ it ( 'merges validators ' , function ( ) {
122
122
const postReq = simpleRequestBut ( {
123
123
headers : { 'if-none-match' : 'W/"weak", "strong", W/"weak2"' } ,
124
124
} ) ;
0 commit comments