mirror of https://github.com/tc39/test262.git
arbitrary-module-namespace-names: Assertion correction. Fixes gh-2866
This commit is contained in:
parent
7d998a098e
commit
d6b342338e
|
@ -14,5 +14,5 @@ features: [arbitrary-module-namespace-names]
|
||||||
---*/
|
---*/
|
||||||
import * as Scouts from "./export-expname_FIXTURE.js";
|
import * as Scouts from "./export-expname_FIXTURE.js";
|
||||||
|
|
||||||
assert.sameValue(Scouts.Mercury, undefined);
|
assert.sameValue(Scouts.Mercury, globalThis.Mercury);
|
||||||
assert.sameValue(Scouts["☿"], globalThis.Mercury);
|
assert.sameValue(Scouts["☿"], globalThis.Mercury);
|
||||||
|
|
Loading…
Reference in New Issue