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 <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
Jure Stepisnik authored and MylesBorins committed Dec 17, 2019
1 parent 91c6fe4 commit c0d9a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-vm-module-link.js
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 c0d9a54

Please sign in to comment.