Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-alvarez committed Nov 14, 2017
1 parent dcc261a commit 6dd5a91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __testfixtures__/ember-qunit-codemod/subject.input.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test('has some thing', function (assert) {
let subject = this.subject();
});

['big', 'small'].forEach((size) => {
['big', 'small'].forEach(function (size) {
test('has another thing', function (assert) {
let subject = this.subject({ size });
});
Expand Down
2 changes: 1 addition & 1 deletion __testfixtures__/ember-qunit-codemod/subject.output.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module('Unit | Component | FooBar', function(hooks) {
let subject = this.owner.factoryFor('component:foo-bar').create();
});

['big', 'small'].forEach((size) => {
['big', 'small'].forEach(function (size) {
test('has another thing', function (assert) {
let subject = this.owner.factoryFor('component:foo-bar').create({ size });
});
Expand Down

0 comments on commit 6dd5a91

Please sign in to comment.