Skip to content

Commit

Permalink
Fixes LockerProject#77 by making the timeout longer. Should be long e…
Browse files Browse the repository at this point in the history
…nough for the event to be processed, but can still potentially fail sometimes.
  • Loading branch information
ctide committed Jun 29, 2011
1 parent 4f1506a commit 9692f1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lscheduler-test-local.js
Expand Up @@ -65,11 +65,11 @@ vows.describe("Locker Scheduling System").addBatch({
} else {
emitter.emit('success', true);
}
}, 500);
}, 1500);
});
return emitter;
},
"is resolved" : function(err, fired) {
"is resolved in a timely fashion" : function(err, fired) {
assert.isNull(err);
assert.isTrue(fired);
}
Expand Down

0 comments on commit 9692f1a

Please sign in to comment.