summaryrefslogtreecommitdiff
path: root/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js')
-rw-r--r--test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js b/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js
index a2e2dabab0..deb7993a14 100644
--- a/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js
+++ b/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js
@@ -13,7 +13,7 @@ const { internalBinding } = require('internal/test/binding');
internalBinding('udp_wrap').UDP.prototype.send6,
internalBinding('tcp_wrap').TCP.prototype.bind,
internalBinding('udp_wrap').UDP.prototype.close,
- internalBinding('tcp_wrap').TCP.prototype.open
+ internalBinding('tcp_wrap').TCP.prototype.open,
].forEach((binding, i) => {
assert.strictEqual('prototype' in binding, false, `Test ${i} failed`);
});