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
test: use '!==' instead of '!='
  • Loading branch information
Gerges Beshay committed Oct 26, 2016
commit 45ecf275e951429442236b0f695b3fae7dfc1a6c
2 changes: 1 addition & 1 deletion test/parallel/test-async-wrap-check-providers.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (common.isAix) {
}

function init(id, provider) {
keyList = keyList.filter((e) => e != pkeys[provider]);
keyList = keyList.filter((e) => e !== pkeys[provider]);
}

function noop() { }
Expand Down