diff --git a/test/function/deshadowed-shorthand-property/main.js b/test/function/deshadowed-shorthand-property/main.js index 3cc4941..7942ca4 100644 --- a/test/function/deshadowed-shorthand-property/main.js +++ b/test/function/deshadowed-shorthand-property/main.js @@ -1,7 +1,7 @@ import foo from './foo.js'; function x () { - const answer = foo(); + var answer = foo(); return { answer }; }