From 18d6ba99475665d2a2417ae01ed5055c2ed26f3f Mon Sep 17 00:00:00 2001 From: Artem Yavorsky Date: Sun, 19 Mar 2017 01:18:22 +0200 Subject: [PATCH] Fix export array rest expected output. --- .../strict/export-const-destructuring-array-rest/expected.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-plugin-transform-es2015-modules-commonjs/test/fixtures/strict/export-const-destructuring-array-rest/expected.js b/packages/babel-plugin-transform-es2015-modules-commonjs/test/fixtures/strict/export-const-destructuring-array-rest/expected.js index 7f0d3ab179..c975988eb9 100644 --- a/packages/babel-plugin-transform-es2015-modules-commonjs/test/fixtures/strict/export-const-destructuring-array-rest/expected.js +++ b/packages/babel-plugin-transform-es2015-modules-commonjs/test/fixtures/strict/export-const-destructuring-array-rest/expected.js @@ -3,4 +3,4 @@ const [foo, bar, ...baz] = []; exports.foo = foo; exports.bar = bar; -exports.bar = baz; +exports.baz = baz;