From 714cb370abb100644004174044abffb07673c7e6 Mon Sep 17 00:00:00 2001 From: Alex Alvarez Date: Mon, 13 Nov 2017 19:03:08 -0500 Subject: [PATCH] Cleanup --- __testfixtures__/ember-qunit-codemod/subject.input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__testfixtures__/ember-qunit-codemod/subject.input.js b/__testfixtures__/ember-qunit-codemod/subject.input.js index 3027bd2..5378f3a 100644 --- a/__testfixtures__/ember-qunit-codemod/subject.input.js +++ b/__testfixtures__/ember-qunit-codemod/subject.input.js @@ -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 }); });