Skip to content

Commit

Permalink
test: Change from var to const
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Jure Stepisnik authored and targos committed Dec 1, 2019
1 parent 6defe54 commit 34b136b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-vm-module-link.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ async function circular2() {
`,
'./a.mjs': `
export * from './b.mjs';
export var fromA;
export let fromA;
`,
'./b.mjs': `
export * from './a.mjs';
export var fromB;
export let fromB;
`
};
const moduleMap = new Map();
Expand Down

0 comments on commit 34b136b

Please sign in to comment.