Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d590aa8

Browse filesBrowse files
Illescas, RicardoMylesBorins
authored andcommitted
test: fix argument order in assertions
PR-URL: #23506 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 119fc3a commit d590aa8
Copy full SHA for d590aa8

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎test/pummel/test-net-timeout.js‎

Copy file name to clipboardExpand all lines: test/pummel/test-net-timeout.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ echo_server.listen(common.PORT, function() {
6666
});
6767

6868
client.on('data', function(chunk) {
69-
assert.strictEqual('hello\r\n', chunk);
69+
assert.strictEqual(chunk, 'hello\r\n');
7070
if (exchanges++ < 5) {
7171
setTimeout(function() {
7272
console.log('client write "hello"');

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.