diff --git a/test/fixtures/transformation/es6-destructuring/array/actual.js b/test/fixtures/transformation/es6-destructuring/array/actual.js index 10aa8799ed..4163832fd0 100644 --- a/test/fixtures/transformation/es6-destructuring/array/actual.js +++ b/test/fixtures/transformation/es6-destructuring/array/actual.js @@ -1 +1 @@ -var [a, [b], [c], d] = ["hello", [", ", "junk"], ["world"]]; +var [a, [b], [c]] = ["hello", [", ", "junk"], ["world"]]; diff --git a/test/fixtures/transformation/es6-destructuring/array/expected.js b/test/fixtures/transformation/es6-destructuring/array/expected.js index 9a7872ed23..a84ffda3d5 100644 --- a/test/fixtures/transformation/es6-destructuring/array/expected.js +++ b/test/fixtures/transformation/es6-destructuring/array/expected.js @@ -4,4 +4,3 @@ var a = "hello"; var _ref = [", ", "junk"]; var b = _ref[0]; var c = "world"; -var d;