diff options
| author | Lajos Veres | 2014-02-27 09:26:38 +0000 |
|---|---|---|
| committer | Brian Ford | 2014-02-27 01:54:06 -0800 |
| commit | 27873acbf0003031be52c719d068e46e4f7ef31f (patch) | |
| tree | e6b7e40949141e860084095d0b59e146fdb006e2 /test/ng | |
| parent | 4f48898728a752bbb7d2a8fff7149af2a0a86a32 (diff) | |
| download | angular.js-27873acbf0003031be52c719d068e46e4f7ef31f.tar.bz2 | |
chore(qSpec): fix typos
Diffstat (limited to 'test/ng')
| -rw-r--r-- | test/ng/qSpec.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ng/qSpec.js b/test/ng/qSpec.js index b12a4a8f..3d8a08ed 100644 --- a/test/ng/qSpec.js +++ b/test/ng/qSpec.js @@ -1010,7 +1010,7 @@ describe('q', function() { }); - it('should call the errback after the orignal promise is rejected', + it('should call the errback after the original promise is rejected', function() { q.when(deferred.promise, success(), error()); expect(logStr()).toBe(''); @@ -1135,7 +1135,7 @@ describe('q', function() { describe('security', function() { - it('should call success callback only once even if the original promise gets fullfilled ' + + it('should call success callback only once even if the original promise gets fulfilled ' + 'multiple times', function() { var evilPromise = { then: function(success, error, progress) { @@ -1161,7 +1161,7 @@ describe('q', function() { }); - it('should call errback only once even if the original promise gets fullfilled multiple ' + + it('should call errback only once even if the original promise gets fulfilled multiple ' + 'times', function() { var evilPromise = { then: function(success, error, progress) { @@ -1183,7 +1183,7 @@ describe('q', function() { }); - it('should not call progressback after promise gets fullfilled, even if original promise ' + + it('should not call progressback after promise gets fulfilled, even if original promise ' + 'gets notified multiple times', function() { var evilPromise = { then: function(success, error, progress) { |
