cleanup test output

This commit is contained in:
Jonathan Shook 2023-09-27 23:57:06 -05:00
parent 139ac879c5
commit 167e591b0f

View File

@ -36,7 +36,7 @@ public class HashedDoubleRangeTest {
HashRange r = new HashRange(-1.0D, 1.0D);
for (long i = 1; i<1000; i++) {
double result = r.applyAsDouble(i);
System.out.println(result);
// System.out.println(result);
assertThat(result).isBetween(-1.0d, 1.0d);
}
}