From e8a7e0c0d41fa524ddb7912d0b335abce7e4b1ea Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Mon, 13 Jun 2016 23:34:00 -0700 Subject: [PATCH] Accepted baselines. --- .../shorthandOfExportedEntity01_targetES2015_CommonJS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;