diff --git a/tests/baselines/reference/shorthandOfExportedEntity01_targetES2015_CommonJS.js b/tests/baselines/reference/shorthandOfExportedEntity01_targetES2015_CommonJS.js index dbbc72fead3..9e057951b3a 100644 --- a/tests/baselines/reference/shorthandOfExportedEntity01_targetES2015_CommonJS.js +++ b/tests/baselines/reference/shorthandOfExportedEntity01_targetES2015_CommonJS.js @@ -11,7 +11,7 @@ export function foo () { "use strict"; exports.test = "test"; function foo() { - const x = { test }; + const x = { test: exports.test }; } exports.foo = foo;