Skip to content

Commit

Permalink
Merge pull request #48 from benjchristensen/increase-timeout-for-unit…
Browse files Browse the repository at this point in the history
…-tests

Fixing non-deterministic unit test
  • Loading branch information
benjchristensen committed Dec 13, 2012
2 parents 3ef7947 + 27d790d commit 58cb0b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4398,7 +4398,7 @@ private TestCommandWithTimeout(long timeout, int fallbackBehavior) {
protected Boolean run() {
System.out.println("***** running");
try {
Thread.sleep(timeout * 2);
Thread.sleep(timeout * 10);
} catch (InterruptedException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 58cb0b0

Please sign in to comment.