diff --git a/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js b/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js index 1368b53247..bb002dfed6 100644 --- a/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js +++ b/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js @@ -1,4 +1,6 @@ -const A = 'a'; -const o = { +"use strict"; + +var A = "a"; +var o = { A: A // comment };