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 72e480d

Browse filesBrowse files
devsnekMylesBorins
authored andcommitted
test: clean up inappropriate language
PR-URL: #17170 Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent 6887016 commit 72e480d
Copy full SHA for 72e480d

File tree

Expand file treeCollapse file tree

5 files changed

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

5 files changed

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

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

Copy file name to clipboardExpand all lines: test/parallel/test-child-process-stdio-big-write-end.js
+1-1Lines 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
return child();
3232
default:
33-
throw new Error('wtf?');
33+
throw new Error('invalid');
3434
}
3535

3636
function parent() {
Collapse file

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

Copy file name to clipboardExpand all lines: test/parallel/test-process-exit-code.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ switch (process.argv[2]) {
3737
case undefined:
3838
return parent();
3939
default:
40-
throw new Error('wtf');
40+
throw new Error('invalid');
4141
}
4242

4343
function child1() {
Collapse file

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

Copy file name to clipboardExpand all lines: test/parallel/test-process-raw-debug.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ switch (process.argv[2]) {
3030
case undefined:
3131
return parent();
3232
default:
33-
throw new Error(`wtf? ${process.argv[2]}`);
33+
throw new Error(`invalid: ${process.argv[2]}`);
3434
}
3535

3636
function parent() {
Collapse file

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

Copy file name to clipboardExpand all lines: test/parallel/test-repl-syntax-error-handling.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ switch (process.argv[2]) {
2929
case undefined:
3030
return parent();
3131
default:
32-
throw new Error('wtf');
32+
throw new Error('invalid');
3333
}
3434

3535
function parent() {
Collapse file

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

Copy file name to clipboardExpand all lines: test/sequential/test-net-GH-5504.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ switch (process.argv[2]) {
3737
case 'server': return server();
3838
case 'client': return client();
3939
case undefined: return parent();
40-
default: throw new Error('wtf');
40+
default: throw new Error('invalid');
4141
}
4242

4343
function server() {

0 commit comments

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