Fix ShadowRealm/prototype/importValue/not-constructor.js

This commit is contained in:
legendecas 2021-10-08 10:59:36 +08:00 committed by Rick Waldron
parent adce88e717
commit 3f6708fa04
1 changed files with 2 additions and 2 deletions

View File

@ -27,5 +27,5 @@ assert.throws(TypeError, () => {
const r = new ShadowRealm();
assert.throws(TypeError, () => {
new r.imporValue("./import-value_FIXTURE.js", "x");
}, '`new r.imporValue("...")` throws TypeError');
new r.importValue("./import-value_FIXTURE.js", "x");
}, '`new r.importValue("...")` throws TypeError');