summaryrefslogtreecommitdiff
path: root/test/parallel/test-async-wrap-uncaughtexception.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-10-29 19:54:45 -0700
committerJames M Snell <jasnell@gmail.com>2017-11-01 22:34:17 -0700
commit2244f7d9923e4037bb10b8f8f41ebc8c19e783cb (patch)
treecf27a5f5371c9b9a4f68f870425652fcecc8e523 /test/parallel/test-async-wrap-uncaughtexception.js
parent67c8511ea13b6def8c39042b10749a9b182feeac (diff)
downloadandroid-node-v8-2244f7d9923e4037bb10b8f8f41ebc8c19e783cb.tar.gz
android-node-v8-2244f7d9923e4037bb10b8f8f41ebc8c19e783cb.tar.bz2
android-node-v8-2244f7d9923e4037bb10b8f8f41ebc8c19e783cb.zip
test,net: remove scatological terminology
PR-URL: https://github.com/nodejs/node/pull/16599 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'test/parallel/test-async-wrap-uncaughtexception.js')
-rw-r--r--test/parallel/test-async-wrap-uncaughtexception.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-async-wrap-uncaughtexception.js b/test/parallel/test-async-wrap-uncaughtexception.js
index 9427e2fb78..37557b4aac 100644
--- a/test/parallel/test-async-wrap-uncaughtexception.js
+++ b/test/parallel/test-async-wrap-uncaughtexception.js
@@ -42,5 +42,5 @@ process.on('uncaughtException', common.mustCall(() => {
require('crypto').randomBytes(1, common.mustCall(() => {
assert.strictEqual(call_id, async_hooks.executionAsyncId());
call_log[1]++;
- throw new Error('ah crap');
+ throw new Error();
}));