Skip to content

Commit 72e480d

Browse files
devsnekMylesBorins
authored andcommitted
test: clean up inappropriate language
PR-URL: #17170 Reviewed-By: Alexey Orlenko <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 6887016 commit 72e480d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

‎test/parallel/test-child-process-stdio-big-write-end.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ switch (process.argv[2]){
3030
case'child':
3131
returnchild();
3232
default:
33-
thrownewError('wtf?');
33+
thrownewError('invalid');
3434
}
3535

3636
functionparent(){

‎test/parallel/test-process-exit-code.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ switch (process.argv[2]){
3737
caseundefined:
3838
returnparent();
3939
default:
40-
thrownewError('wtf');
40+
thrownewError('invalid');
4141
}
4242

4343
functionchild1(){

‎test/parallel/test-process-raw-debug.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ switch (process.argv[2]){
3030
caseundefined:
3131
returnparent();
3232
default:
33-
thrownewError(`wtf?${process.argv[2]}`);
33+
thrownewError(`invalid:${process.argv[2]}`);
3434
}
3535

3636
functionparent(){

‎test/parallel/test-repl-syntax-error-handling.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ switch (process.argv[2]){
2929
caseundefined:
3030
returnparent();
3131
default:
32-
thrownewError('wtf');
32+
thrownewError('invalid');
3333
}
3434

3535
functionparent(){

‎test/sequential/test-net-GH-5504.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ switch (process.argv[2]){
3737
case'server': returnserver();
3838
case'client': returnclient();
3939
caseundefined: returnparent();
40-
default: thrownewError('wtf');
40+
default: thrownewError('invalid');
4141
}
4242

4343
functionserver(){

0 commit comments

Comments
(0)