Skip to content

Commit d925306

Browse files
committed
1 parent 0e32f25 commit d925306

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/external.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ if (typeof process === 'object') {
231231
'to contain',
232232
'should call the callback: You have created a promise that was not returned from the it block'
233233
);
234-
expect(err, 'to satisfy', { code: 1 });
234+
expect(err, 'to satisfy', { code: 3 });
235235
});
236236
});
237237

@@ -245,7 +245,7 @@ if (typeof process === 'object') {
245245
'not to contain',
246246
'should call the callback: You have created a promise that was not returned from the it block'
247247
);
248-
expect(err, 'to satisfy', { code: 1 });
248+
expect(err, 'to satisfy', { code: 3 });
249249
});
250250
});
251251

@@ -254,7 +254,7 @@ if (typeof process === 'object') {
254254
'notToErrorCaughtError',
255255
'executed through jasmine'
256256
).spread(function (err, stdout, stderr) {
257-
expect(err, 'to satisfy', { code: 1 });
257+
expect(err, 'to satisfy', { code: 3 });
258258
expect(
259259
stdout,
260260
'to contain',

0 commit comments

Comments
 (0)