Correct timeout logic when awaiting exception in LiveReloadServerTests

This commit is contained in:
Andy Wilkinson 2015-10-07 13:54:32 +01:00
parent b7ecccf0a3
commit 377107c4ff

View File

@ -130,7 +130,7 @@ public class LiveReloadServerTests {
private void awaitClosedException() throws InterruptedException {
long startTime = System.currentTimeMillis();
while (this.server.getClosedExceptions().isEmpty()
&& System.currentTimeMillis() - startTime > 10000) {
&& System.currentTimeMillis() - startTime < 10000) {
Thread.sleep(100);
}
}