summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-searchparams-stringifier.js
diff options
context:
space:
mode:
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'
- }));
+ });
}