From 12f8fa229ddbeabe7b9a1618b809be136c1c261f Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 30 Mar 2015 21:49:58 +1100 Subject: [PATCH] remove redundant spec.functionName tests --- test.js | 7 ------- .../transformation/spec.function-name/basic/actual.js | 2 -- .../transformation/spec.function-name/basic/expected.js | 2 -- 3 files changed, 11 deletions(-) delete mode 100644 test.js diff --git a/test.js b/test.js deleted file mode 100644 index 522f46589d..0000000000 --- a/test.js +++ /dev/null @@ -1,7 +0,0 @@ -class Example { - constructor() { - var Example; - } -} - -let t = new Example(); diff --git a/test/core/fixtures/transformation/spec.function-name/basic/actual.js b/test/core/fixtures/transformation/spec.function-name/basic/actual.js index be005cf8aa..4d77927a9c 100644 --- a/test/core/fixtures/transformation/spec.function-name/basic/actual.js +++ b/test/core/fixtures/transformation/spec.function-name/basic/actual.js @@ -1,5 +1,3 @@ var g = function () { doSmth(); }; - -var h = function (h) {}; diff --git a/test/core/fixtures/transformation/spec.function-name/basic/expected.js b/test/core/fixtures/transformation/spec.function-name/basic/expected.js index d055852eb2..68d07b7ae5 100644 --- a/test/core/fixtures/transformation/spec.function-name/basic/expected.js +++ b/test/core/fixtures/transformation/spec.function-name/basic/expected.js @@ -3,5 +3,3 @@ var g = function g() { doSmth(); }; - -var h = function h(h) {};