Skip to content

Commit 775e29d

Browse files
committed
tests: use strict equality
1 parent 59e7e39 commit 775e29d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/send.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ describe('send(file).pipe(res)', function () {
253253

254254
function onHeaders (res, filePath) {
255255
assert.ok(filePath)
256-
assert.equal(path.normalize(filePath), path.normalize(path.join(fixtures, 'nums')))
256+
assert.strictEqual(path.normalize(filePath), path.normalize(path.join(fixtures, 'nums')))
257257
cb()
258258
}
259259

0 commit comments

Comments
 (0)