Skip to content

Commit 15ce114

Browse files
committed
- style fix
1 parent 82df61c commit 15ce114

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/core/test/core/factories/Grid.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -324,14 +324,14 @@ describe('Grid factory', function() {
324324
});
325325
});
326326

327-
describe('getting Rows', function(){
328-
it('should get Rows', function(){
327+
describe('getting Rows', function() {
328+
it('should get Rows', function() {
329329
expect(grid.getRow()).toBe(null);
330330
expect(grid.getRows(grid.rows[0].entity)).toBe(grid.rows[0]);
331331
expect(grid.getRows(grid.rows[0].entity), [grid.rows[0]]).toBe(grid.rows[0]);
332332
});
333333

334-
it('should get Rows by key', function(){
334+
it('should get Rows by key', function() {
335335
grid.rows[0].entity = {str: 'abc', num: 123, nll: null, multi: true};
336336
grid.rows[1].entity = {multi: true};
337337
grid.rows[0].str = 'abc';
@@ -356,7 +356,7 @@ describe('Grid factory', function() {
356356
expect(grid.getRowsByKey(true, "innerMulti", false).length).toBe(2);
357357
});
358358

359-
it('should find first Row by key', function(){
359+
it('should find first Row by key', function() {
360360
grid.rows[0].entity = {str: 'abc', num: 123, nll: null, multi: true};
361361
grid.rows[1].entity = {multi: true};
362362
grid.rows[0].str = 'abc';

0 commit comments

Comments
 (0)