Skip to content

Commit f3854a0

Browse files
committed
fix lint
1 parent 313d0c4 commit f3854a0

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

tests/integration/components/class-field-description-test.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import EmberObject from '@ember/object';
22
import { module, test } from 'qunit';
33
import { setupRenderingTest } from 'ember-qunit';
4-
import { render, click, findAll, find, triggerEvent } from '@ember/test-helpers';
4+
import {
5+
render,
6+
click,
7+
findAll,
8+
find,
9+
triggerEvent,
10+
} from '@ember/test-helpers';
511
import hbs from 'htmlbars-inline-precompile';
612

713
module('Integration | Component | class field description', function (hooks) {
@@ -84,7 +90,11 @@ module('Integration | Component | class field description', function (hooks) {
8490
deprecated: true,
8591
name: 'concat',
8692
description: 'concatenates',
87-
params: [{ name: 'param1' }, { name: 'param2' }, { name: 'options', props: [ { name: 'prop1' }, { name: 'prop2' }] }],
93+
params: [
94+
{ name: 'param1' },
95+
{ name: 'param2' },
96+
{ name: 'options', props: [{ name: 'prop1' }, { name: 'prop2' }] },
97+
],
8898
})
8999
);
90100

0 commit comments

Comments
 (0)