diff options
| author | Vojta Jina | 2011-03-25 17:28:42 +0100 | 
|---|---|---|
| committer | Igor Minar | 2011-03-28 23:04:48 -0700 | 
| commit | 9312bed4728e9f550fea131040cae199b3ab0c22 (patch) | |
| tree | 2e6fad7e2059b0afeba31078a4138df5928cfd7c /test/ResourceSpec.js | |
| parent | faf29dd047d282c74a7383dc42299ab4e38cdefe (diff) | |
| download | angular.js-9312bed4728e9f550fea131040cae199b3ab0c22.tar.bz2 | |
Added missing semi-colons
So that my eclipse stops complaining...
Diffstat (limited to 'test/ResourceSpec.js')
| -rw-r--r-- | test/ResourceSpec.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/test/ResourceSpec.js b/test/ResourceSpec.js index 76909968..2c084ec1 100644 --- a/test/ResourceSpec.js +++ b/test/ResourceSpec.js @@ -57,7 +57,7 @@ describe("resource", function() {      var R = resource.route('/Path/:a');      xhr.expectGET('/Path/doh@foo?bar=baz@1').respond({});      R.get({a: 'doh@foo', bar: 'baz@1'}); -  }) +  });    it("should build resource with default param", function(){      xhr.expectGET('/Order/123/Line/456.visa?minimum=0.05').respond({id:'abc'}); | 
