Skip to content

Commit f2c57e7

Browse files
joesepijasnell
authored andcommitted
test: fixing assertion value order
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>
1 parent 66eb35f commit f2c57e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-net-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ const server = net.createServer(function(socket) {
6969
});
7070

7171
process.on('exit', function() {
72-
assert.strictEqual(server.connections, 0);
72+
assert.strictEqual(0, server.connections);
7373
});

0 commit comments

Comments
 (0)