Skip to content

Commit 83ac119

Browse files
Di PengIgorMinar
authored andcommitted
style(jqLiteSpec): add space
1 parent 7a3fdda commit 83ac119

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/jqLiteSpec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ describe('jqLite', function(){
470470
});
471471

472472

473-
it('should return empty set when no parent', function(){
473+
it('should return empty set when no parent', function() {
474474
var element = jqLite('<div>abc</div>');
475475
expect(element.parent()).toBeTruthy();
476476
expect(element.parent().length).toEqual(0);
@@ -489,7 +489,7 @@ describe('jqLite', function(){
489489
});
490490

491491

492-
describe('next', function(){
492+
describe('next', function() {
493493
it('should return next sibling', function(){
494494
var element = jqLite('<div><b>b</b><i>i</i></div>');
495495
var b = element.find('b');
@@ -499,7 +499,7 @@ describe('jqLite', function(){
499499
});
500500

501501

502-
describe('find', function(){
502+
describe('find', function() {
503503
it('should find child by name', function(){
504504
var root = jqLite('<div><div>text</div></div>');
505505
var innerDiv = root.find('div');

0 commit comments

Comments
 (0)