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 MylesBorins committed Oct 30, 2018
1 parent 4e1a54f commit 305c1e1
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 305c1e1

Please sign in to comment.