Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 34b136b

Browse files
Jure Stepisniktargos
Jure Stepisnik
authored andcommittedDec 1, 2019
test: Change from var to const
PR-URL: #30431 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 6defe54 commit 34b136b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/parallel/test-vm-module-link.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ async function circular2() {
9797
`,
9898
'./a.mjs': `
9999
export * from './b.mjs';
100-
export var fromA;
100+
export let fromA;
101101
`,
102102
'./b.mjs': `
103103
export * from './a.mjs';
104-
export var fromB;
104+
export let fromB;
105105
`
106106
};
107107
const moduleMap = new Map();

0 commit comments

Comments
 (0)
Please sign in to comment.