Skip to content

Commit

Permalink
test: fixing assertion value order
Browse files Browse the repository at this point in the history
PR-URL: #23574
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Hitesh Kanwathirtha <digitalinfinity@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
joesepi authored and addaleax committed Oct 12, 2018
1 parent 3d62d38 commit ea15d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-net-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ const server = net.createServer(function(socket) {
});

process.on('exit', function() {
assert.strictEqual(server.connections, 0);
assert.strictEqual(0, server.connections);
});

0 comments on commit ea15d84

Please sign in to comment.