diff options
| author | Di Peng | 2011-07-14 18:00:11 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-07-17 22:19:08 -0700 | 
| commit | 83ac1193f2322f71f314e7e160af46142b01a290 (patch) | |
| tree | b39bdc9a8cc4a73e8ef9b5655cde6a5a5cd61258 | |
| parent | 7a3fdda9650a06792d9278a8cef06d544d49300f (diff) | |
| download | angular.js-83ac1193f2322f71f314e7e160af46142b01a290.tar.bz2 | |
style(jqLiteSpec): add space
| -rw-r--r-- | test/jqLiteSpec.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js index 8dd66d36..38953394 100644 --- a/test/jqLiteSpec.js +++ b/test/jqLiteSpec.js @@ -470,7 +470,7 @@ describe('jqLite', function(){      }); -    it('should return empty set when no parent', function(){ +    it('should return empty set when no parent', function() {        var element = jqLite('<div>abc</div>');        expect(element.parent()).toBeTruthy();        expect(element.parent().length).toEqual(0); @@ -489,7 +489,7 @@ describe('jqLite', function(){    }); -  describe('next', function(){ +  describe('next', function() {      it('should return next sibling', function(){        var element = jqLite('<div><b>b</b><i>i</i></div>');        var b = element.find('b'); @@ -499,7 +499,7 @@ describe('jqLite', function(){    }); -  describe('find', function(){ +  describe('find', function() {      it('should find child by name', function(){        var root = jqLite('<div><div>text</div></div>');        var innerDiv = root.find('div'); | 
