From 56e943ef25eb2d2341a1ec5ec5280b3e36719e13 Mon Sep 17 00:00:00 2001 From: Garrick Cheung Date: Sat, 22 Feb 2020 15:15:13 -0800 Subject: [PATCH] Fix lint issues. (cherry picked from commit 9fe5a6b5a86adb163b02a200bf7562aca87c53e0) --- .../glimmer/tests/integration/input-test.js | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/packages/@ember/-internals/glimmer/tests/integration/input-test.js b/packages/@ember/-internals/glimmer/tests/integration/input-test.js index 391483727b8..24e8392706e 100644 --- a/packages/@ember/-internals/glimmer/tests/integration/input-test.js +++ b/packages/@ember/-internals/glimmer/tests/integration/input-test.js @@ -202,22 +202,30 @@ moduleFor( } ['@test GH18211 input checked attribute, without a value, works with the action helper']() { - this.render(``, { actions: { someAction() {} } }); + this.render(``, { + actions: { someAction() {} }, + }); this.assertPropertyHasValue('checked', true); } ['@test GH18211 input checked attribute, with a value, works with the action helper']() { - this.render(``, { actions: { someAction() {} } }); + this.render(``, { + actions: { someAction() {} }, + }); this.assertPropertyHasValue('checked', true); } - + ['@test GH18211 input checked attribute, without a value, works with attributes with values']() { - this.render(``, { actions: { someAction() {} } }); + this.render(``, { + actions: { someAction() {} }, + }); this.assertPropertyHasValue('checked', true); } ['@test GH18211 input checked attribute, without a value, works with event attributes']() { - this.render(``, { actions: { someAction() {} } }); + this.render(``, { + actions: { someAction() {} }, + }); this.assertPropertyHasValue('checked', true); }