★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/cd07b02472Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
test: fixing arguments order in assert.strictEqual()
PR-URL: #24152
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
gcarcaci authored and MylesBorins committed Dec 26, 2018
1 parent 6e8fa53 commit cd07b024727c59e5d7cbe7f5da48a8b898ff1f83
Showing with 2 additions and 2 deletions.
  1. +2 −2 test/parallel/test-event-emitter-add-listeners.js
@@ -42,8 +42,8 @@ const EventEmitter = require('events');
});

const hello = common.mustCall(function(a, b) {
assert.strictEqual('a', a);
assert.strictEqual('b', b);
assert.strictEqual(a, 'a');
assert.strictEqual(b, 'b');
});

ee.once('newListener', function(name, listener) {

0 comments on commit cd07b02

Please sign in to comment.