Skip to content

Commit

Permalink
Decrease chance of random test failure in core/test/unit/server_utils…
Browse files Browse the repository at this point in the history
…_spec.js

no issue
  • Loading branch information
kirrg001 committed Dec 5, 2017
1 parent 4a6b5d2 commit 511c267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/test/unit/server_utils_spec.js
Expand Up @@ -135,7 +135,7 @@ describe('Server Utilities', function () {
it('will timeout', function (done) {
nock('https://www.gravatar.com')
.get('/avatar/ef6dcde5c99bb8f685dd451ccc3e050a?s=250&d=404&r=x')
.delay(11)
.delay(15)
.reply(200);

gravatar.lookup({email: 'exists@example.com'}, 10).then(function (result) {
Expand Down

0 comments on commit 511c267

Please sign in to comment.