Skip to content

Commit

Permalink
Merge pull request #1047 from jugglinmike/fix-timeout-test-2
Browse files Browse the repository at this point in the history
Correct erroneous test

* jugglinmike/fix-timeout-test-2:
  Correct erroneous test

Conflicts:
	test/runnable.js
  • Loading branch information
travisjeffery committed Nov 30, 2013
2 parents 5d19039 + ddf218e commit 1047cd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/runnable.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@ describe('Runnable(title, fn)', function(){
callCount++;
};
var test = new Runnable('foo', function(done){
setTimeout(increment, 4);
setTimeout(increment, 6);
setTimeout(increment, 1);
setTimeout(increment, 100);
});
test.timeout(5);
test.timeout(10);
test.run(function(err){
err.should.be.ok;
callCount.should.equal(1);
Expand Down

0 comments on commit 1047cd9

Please sign in to comment.