Skip to content

Commit 1fbace5

Browse files
ryzokukenMayaLekova
authored andcommitted
test: address nits and rename the corresponding fixture
Refs: nodejs#19105 PR-URL: nodejs#19161 Refs: https://github.com/nodejs/node/blob/master/doc/guides/writing-tests.md#test-structure Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 5afc1da commit 1fbace5

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

test/sequential/test-fs-stat-sync-overflow.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const assert = require('assert');
3434
const { exec } = require('child_process');
3535

3636
const cmd =
37-
`"${process.execPath}" "${fixturesDir}/test-regress-GH-4015.js"`;
37+
`"${process.execPath}" "${fixturesDir}/test-fs-stat-sync-overflow.js"`;
3838

3939
exec(cmd, function(err, stdout, stderr) {
4040
assert(/RangeError: Maximum call stack size exceeded/.test(stderr));

test/sequential/test-net-response-size.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
const common = require('../common');
2424

2525
// Make sure the net module's server doesn't throw an error when handling
26-
// responses that are either too long or too small (especially on windows)
26+
// responses that are either too long or too small (especially on Windows)
2727
// https://github.com/nodejs/node-v0.x-archive/issues/1697
2828

2929
const net = require('net');

0 commit comments

Comments
 (0)