aboutsummaryrefslogtreecommitdiffstats
path: root/test/ResourceSpec.js
diff options
context:
space:
mode:
authorVojta Jina2011-03-25 17:28:42 +0100
committerIgor Minar2011-03-28 23:04:48 -0700
commit9312bed4728e9f550fea131040cae199b3ab0c22 (patch)
tree2e6fad7e2059b0afeba31078a4138df5928cfd7c /test/ResourceSpec.js
parentfaf29dd047d282c74a7383dc42299ab4e38cdefe (diff)
downloadangular.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.js2
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'});