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 0bdccf4

Browse filesBrowse files
lpincapull[bot]
authored andcommitted
test: fix argument order in assertion
The first argument is the actual value, the second argument is the expected value. PR-URL: #40842 Fixes: #40277 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Adrian Estrada <edsadr@gmail.com>
1 parent 3c7b69e commit 0bdccf4
Copy full SHA for 0bdccf4

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

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

‎test/parallel/test-http2-pipe-named-pipe.js‎

Copy file name to clipboardExpand all lines: test/parallel/test-http2-pipe-named-pipe.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ server.on('stream', common.mustCall((stream) => {
2828
}));
2929

3030
dest.on('finish', common.mustCall(() => {
31-
assert.strictEqual(fs.readFileSync(loc).length,
32-
fs.readFileSync(fn).length);
31+
assert.strictEqual(fs.readFileSync(fn).length,
32+
fs.readFileSync(loc).length);
3333
}));
3434
}));
3535

0 commit comments

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