Skip to content

Commit

Permalink
Relax OscilloscopeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets committed Dec 23, 2021
1 parent 02d692e commit 3823ebc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void beat() throws Exception {
// time of one beat is about 1/128 seconds = 7.8125 milliseconds
long beatDiff = System.currentTimeMillis() - time;
assertThat(beatDiff, greaterThanOrEqualTo(7L));
assertThat(beatDiff, lessThanOrEqualTo(13L));
assertThat(beatDiff, lessThanOrEqualTo(14L));
}
} while (!oscilloscope.willRestart());

Expand Down

0 comments on commit 3823ebc

Please sign in to comment.