diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/servicesSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/servicesSpec.js b/test/servicesSpec.js index 794d1120..de2d2b2b 100644 --- a/test/servicesSpec.js +++ b/test/servicesSpec.js @@ -165,7 +165,7 @@ describe("service", function(){ function callback(code, response) { expect(code).toEqual(200); log = log + toJson(response) + ';'; - }; + } beforeEach(function(){ log = ''; @@ -234,7 +234,7 @@ describe("service", function(){ xhr.expectPOST('/bulk', { requests:[{method:'GET', url:'/url', data: null}] }).respond([ - {status:200, response:'123'}, + {status:200, response:'123'} ]); cache('GET', '/url', null, callback); cache('GET', '/url', null, callback); |
