Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 27873ac

Browse files
Lajos Veresbtford
Lajos Veres
authored andcommitted
chore(qSpec): fix typos
1 parent 4f48898 commit 27873ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/ng/qSpec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ describe('q', function() {
10101010
});
10111011

10121012

1013-
it('should call the errback after the orignal promise is rejected',
1013+
it('should call the errback after the original promise is rejected',
10141014
function() {
10151015
q.when(deferred.promise, success(), error());
10161016
expect(logStr()).toBe('');
@@ -1135,7 +1135,7 @@ describe('q', function() {
11351135

11361136

11371137
describe('security', function() {
1138-
it('should call success callback only once even if the original promise gets fullfilled ' +
1138+
it('should call success callback only once even if the original promise gets fulfilled ' +
11391139
'multiple times', function() {
11401140
var evilPromise = {
11411141
then: function(success, error, progress) {
@@ -1161,7 +1161,7 @@ describe('q', function() {
11611161
});
11621162

11631163

1164-
it('should call errback only once even if the original promise gets fullfilled multiple ' +
1164+
it('should call errback only once even if the original promise gets fulfilled multiple ' +
11651165
'times', function() {
11661166
var evilPromise = {
11671167
then: function(success, error, progress) {
@@ -1183,7 +1183,7 @@ describe('q', function() {
11831183
});
11841184

11851185

1186-
it('should not call progressback after promise gets fullfilled, even if original promise ' +
1186+
it('should not call progressback after promise gets fulfilled, even if original promise ' +
11871187
'gets notified multiple times', function() {
11881188
var evilPromise = {
11891189
then: function(success, error, progress) {

0 commit comments

Comments
 (0)