summaryrefslogtreecommitdiff
path: root/test/parallel/test-common.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-common.js')
-rw-r--r--test/parallel/test-common.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-common.js b/test/parallel/test-common.js
index 4bddcf4eb1..201fa40d08 100644
--- a/test/parallel/test-common.js
+++ b/test/parallel/test-common.js
@@ -40,8 +40,8 @@ assert.throws(function() {
}, /^TypeError: Invalid expected value: \/foo\/$/);
-// common.fail() tests
+// assert.fail() tests
assert.throws(
- () => { common.fail('fhqwhgads'); },
+ () => { assert.fail('fhqwhgads'); },
/^AssertionError: fhqwhgads$/
);