diff --git a/test/fixtures/transformation/es6-property-methods-assignment/getter-and-setter/actual.js b/test/fixtures/transformation/es6-property-method-assignment/getter-and-setter/actual.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/getter-and-setter/actual.js rename to test/fixtures/transformation/es6-property-method-assignment/getter-and-setter/actual.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/getter-and-setter/expected.js b/test/fixtures/transformation/es6-property-method-assignment/getter-and-setter/expected.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/getter-and-setter/expected.js rename to test/fixtures/transformation/es6-property-method-assignment/getter-and-setter/expected.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/getter/actual.js b/test/fixtures/transformation/es6-property-method-assignment/getter/actual.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/getter/actual.js rename to test/fixtures/transformation/es6-property-method-assignment/getter/actual.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/getter/expected.js b/test/fixtures/transformation/es6-property-method-assignment/getter/expected.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/getter/expected.js rename to test/fixtures/transformation/es6-property-method-assignment/getter/expected.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/actual.js b/test/fixtures/transformation/es6-property-method-assignment/method-self-reference/actual.js similarity index 87% rename from test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/actual.js rename to test/fixtures/transformation/es6-property-method-assignment/method-self-reference/actual.js index dfa4898e55..bc8219323e 100644 --- a/test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/actual.js +++ b/test/fixtures/transformation/es6-property-method-assignment/method-self-reference/actual.js @@ -14,6 +14,6 @@ var bar = { var foobar = 123; var foobar2 = { foobar() { - return foobar; + console.log(foobar); } }; diff --git a/test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/expected.js b/test/fixtures/transformation/es6-property-method-assignment/method-self-reference/expected.js similarity index 99% rename from test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/expected.js rename to test/fixtures/transformation/es6-property-method-assignment/method-self-reference/expected.js index 41e330b3f7..de924da268 100644 --- a/test/fixtures/transformation/es6-property-methods-assignment/method-self-reference/expected.js +++ b/test/fixtures/transformation/es6-property-method-assignment/method-self-reference/expected.js @@ -39,4 +39,3 @@ var foobar2 = { console.log(foobar); }) }; - diff --git a/test/fixtures/transformation/es6-property-methods-assignment/method/actual.js b/test/fixtures/transformation/es6-property-method-assignment/method/actual.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/method/actual.js rename to test/fixtures/transformation/es6-property-method-assignment/method/actual.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/method/expected.js b/test/fixtures/transformation/es6-property-method-assignment/method/expected.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/method/expected.js rename to test/fixtures/transformation/es6-property-method-assignment/method/expected.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/setter/actual.js b/test/fixtures/transformation/es6-property-method-assignment/setter/actual.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/setter/actual.js rename to test/fixtures/transformation/es6-property-method-assignment/setter/actual.js diff --git a/test/fixtures/transformation/es6-property-methods-assignment/setter/expected.js b/test/fixtures/transformation/es6-property-method-assignment/setter/expected.js similarity index 100% rename from test/fixtures/transformation/es6-property-methods-assignment/setter/expected.js rename to test/fixtures/transformation/es6-property-method-assignment/setter/expected.js