Skip to content

Commit 6dd5a91

Browse files
author
Alex Alvarez
committed
Cleanup
1 parent dcc261a commit 6dd5a91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

__testfixtures__/ember-qunit-codemod/subject.input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test('has some thing', function (assert) {
2424
let subject = this.subject();
2525
});
2626

27-
['big', 'small'].forEach((size) => {
27+
['big', 'small'].forEach(function (size) {
2828
test('has another thing', function (assert) {
2929
let subject = this.subject({ size });
3030
});

__testfixtures__/ember-qunit-codemod/subject.output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module('Unit | Component | FooBar', function(hooks) {
5454
let subject = this.owner.factoryFor('component:foo-bar').create();
5555
});
5656

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

0 commit comments

Comments
 (0)