Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void currentTimeMillisPerf() {
count += 1000;
} while (System.currentTimeMillis() < start + 500);
System.out.println("currentTimeMillisPerf count/sec: " + count * 2);
assertTrue(count > 1_000_000 / 2); // half the speed of Rasberry Pi
assertTrue(count > 200_000 / 2); // half the speed of Rasberry Pi
}

@Test
Expand Down Expand Up @@ -129,7 +129,7 @@ public void currentTimeNanos() {
break;
}
System.out.printf("count: %,d%n", count);
assertTrue(count > 1_000_000);
assertTrue(count > 200_000);
}

@Test
Expand Down