Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ojw28 committed Jun 9, 2020
1 parent 6bfdf8f commit 6026b91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public void createRobolectricConditionVariable_blockWithTimeout_blocksForAtLeast
long startTimeMs = System.currentTimeMillis();
assertThat(conditionVariable.block(/* timeoutMs= */ 500)).isFalse();
long endTimeMs = System.currentTimeMillis();
assertThat(endTimeMs - startTimeMs).isAtLeast(500);
assertThat(endTimeMs - startTimeMs).isAtLeast(500L);
}
}

0 comments on commit 6026b91

Please sign in to comment.