Skip to content

Commit b0ed15b

Browse files
authored
chore: fix typo (#6609)
Signed-off-by: mountdisk <[email protected].>
1 parent 3910323 commit b0ed15b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/res.append.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function shouldHaveHeaderValues (key, values) {
108108
return function (res) {
109109
var headers = res.headers[key.toLowerCase()]
110110
assert.ok(headers, 'should have header "' + key + '"')
111-
assert.strictEqual(headers.length, values.length, 'should have ' + values.length + ' occurances of "' + key + '"')
111+
assert.strictEqual(headers.length, values.length, 'should have ' + values.length + ' occurrences of "' + key + '"')
112112
for (var i = 0; i < values.length; i++) {
113113
assert.strictEqual(headers[i], values[i])
114114
}

0 commit comments

Comments
 (0)