summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-module-reevaluate.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-vm-module-reevaluate.js')
-rw-r--r--test/parallel/test-vm-module-reevaluate.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/parallel/test-vm-module-reevaluate.js b/test/parallel/test-vm-module-reevaluate.js
index c3914f362f..4767541dd2 100644
--- a/test/parallel/test-vm-module-reevaluate.js
+++ b/test/parallel/test-vm-module-reevaluate.js
@@ -14,7 +14,6 @@ const finished = common.mustCall();
{
const m = new SourceTextModule('1');
await m.link(common.mustNotCall());
- m.instantiate();
assert.strictEqual((await m.evaluate()).result, 1);
assert.strictEqual((await m.evaluate()).result, undefined);
assert.strictEqual((await m.evaluate()).result, undefined);
@@ -23,7 +22,6 @@ const finished = common.mustCall();
{
const m = new SourceTextModule('throw new Error()');
await m.link(common.mustNotCall());
- m.instantiate();
let threw = false;
try {