diff options
| author | Vojta Jina | 2011-05-31 10:32:54 +0200 |
|---|---|---|
| committer | Vojta Jina | 2011-05-31 10:32:54 +0200 |
| commit | 2e5199997c77cb2febed4ff21bc12a5d5fbad4ce (patch) | |
| tree | da57107e2e07e5d160af0383cbd86ee2fbc94c80 /test/service/xhr.cacheSpec.js | |
| parent | b2f5299e0e3d6e4892b7fcc37686012147bf0afa (diff) | |
| download | angular.js-2e5199997c77cb2febed4ff21bc12a5d5fbad4ce.tar.bz2 | |
Rename deprecated wasCalled() -> toHaveBeenCalled() in all specs
As well as wasNotCalled(), wasCalledWith(), wasNotCalledWith()
Diffstat (limited to 'test/service/xhr.cacheSpec.js')
| -rw-r--r-- | test/service/xhr.cacheSpec.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/service/xhr.cacheSpec.js b/test/service/xhr.cacheSpec.js index 0a0140a6..ecaebc3f 100644 --- a/test/service/xhr.cacheSpec.js +++ b/test/service/xhr.cacheSpec.js @@ -128,17 +128,17 @@ describe('$xhr.cache', function() { $browserXhr.expectGET('/url').respond('+'); cache('GET', '/url', null, callback); - expect(eval).wasNotCalled(); + expect(eval).not.toHaveBeenCalled(); $browserXhr.flush(); - expect(eval).wasCalled(); + expect(eval).toHaveBeenCalled(); eval.reset(); //reset the spy cache('GET', '/url', null, callback); - expect(eval).wasNotCalled(); + expect(eval).not.toHaveBeenCalled(); $browser.defer.flush(); - expect(eval).wasCalled(); + expect(eval).toHaveBeenCalled(); }); }); |
