summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-searchparams-stringifier.js
diff options
context:
space:
mode:
authorMithun Sasidharan <mithunsasidharan89@gmail.com>2017-12-06 22:16:44 +0530
committerAnatoli Papirovski <apapirovski@mac.com>2017-12-08 16:02:07 -0500
commiteae0c05697121aaae4b097f34d30a259c8591af1 (patch)
tree5a249a64f5309a1865e6f1540a39264eb7b898f9 /test/parallel/test-whatwg-url-searchparams-stringifier.js
parent20d6b8c6c01c09a51f503f7f8a0fee494be6f742 (diff)
downloadnode-new-eae0c05697121aaae4b097f34d30a259c8591af1.tar.gz
test: replace assert.throws w/ common.expectsError
PR-URL: https://github.com/nodejs/node/pull/17498 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Jon Moss <me@jonathanmoss.me>
Diffstat (limited to 'test/parallel/test-whatwg-url-searchparams-stringifier.js')
-rw-r--r--test/parallel/test-whatwg-url-searchparams-stringifier.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/parallel/test-whatwg-url-searchparams-stringifier.js b/test/parallel/test-whatwg-url-searchparams-stringifier.js
index e2f73d262e..e3bfbdcf19 100644
--- a/test/parallel/test-whatwg-url-searchparams-stringifier.js
+++ b/test/parallel/test-whatwg-url-searchparams-stringifier.js
@@ -1,7 +1,6 @@
'use strict';
const common = require('../common');
-const assert = require('assert');
const URLSearchParams = require('url').URLSearchParams;
const { test, assert_equals } = require('../common/wpt');
@@ -126,11 +125,11 @@ test(function() {
// Tests below are not from WPT.
{
const params = new URLSearchParams();
- assert.throws(() => {
+ common.expectsError(() => {
params.toString.call(undefined);
- }, common.expectsError({
+ }, {
code: 'ERR_INVALID_THIS',
type: TypeError,
message: 'Value of "this" must be of type URLSearchParams'
- }));
+ });
}