Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
squash! use triple equals
  • Loading branch information
joyeecheung committed Feb 1, 2018
commit d317a76a9f8683ff9dee3a54425173ab598e012d
2 changes: 1 addition & 1 deletion benchmark/http/check_invalid_header_char.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const bench = common.createBenchmark(main, {
});

function main({ n, key }) {
if (key == 'LONG_AND_INVALID') {
if (key === 'LONG_AND_INVALID') {
key = LONG_AND_INVALID;
}
bench.start();
Expand Down