Commit 6026b919 by Oliver Woodman

Fix test

parent 6bfdf8f8
......@@ -41,6 +41,6 @@ public class TestUtilTest {
long startTimeMs = System.currentTimeMillis();
assertThat(conditionVariable.block(/* timeoutMs= */ 500)).isFalse();
long endTimeMs = System.currentTimeMillis();
assertThat(endTimeMs - startTimeMs).isAtLeast(500);
assertThat(endTimeMs - startTimeMs).isAtLeast(500L);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment