Skip to content

Commit 523cf73

Browse files
committed
fix from review
1 parent 3cf3643 commit 523cf73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/apache/datasketches/hll/DirectAuxHashMapTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
6060
hllSketch.couponUpdate(HllUtil.pair(7, 15)); //mock extreme values
6161
hllSketch.couponUpdate(HllUtil.pair(8, 15));
6262
hllSketch.couponUpdate(HllUtil.pair(9, 15));
63-
//println(hllSketch.toString(true, true, true, true)); //
63+
//println(hllSketch.toString(true, true, true, true));
6464
DirectHllArray dha = (DirectHllArray) hllSketch.hllSketchImpl;
6565
assertEquals(dha.getAuxHashMap().getLgAuxArrInts(), 2);
6666
assertTrue(hllSketch.isMemory());
@@ -78,14 +78,14 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
7878
byteArray = hllSketch.toUpdatableByteArray();
7979
WritableMemory wmem2 = WritableMemory.writableWrap(byteArray);
8080
hllSketch2 = HllSketch.writableWrap(wmem2);
81-
//println(hllSketch2.toString(true, true, true, true)); //
81+
//println(hllSketch2.toString(true, true, true, true));
8282
DirectHllArray dha2 = (DirectHllArray) hllSketch2.hllSketchImpl;
8383
assertEquals(dha2.getAuxHashMap().getLgAuxArrInts(), 2);
8484
assertEquals(dha2.getAuxHashMap().getAuxCount(), 3);
8585

8686
//Check grow to on-heap
8787
hllSketch.couponUpdate(HllUtil.pair(10, 15)); //puts it over the edge, must grow
88-
//println(hllSketch.toString(true, true, true, true)); //
88+
//println(hllSketch.toString(true, true, true, true));
8989
dha = (DirectHllArray) hllSketch.hllSketchImpl;
9090
assertEquals(dha.getAuxHashMap().getLgAuxArrInts(), 3);
9191
assertEquals(dha.getAuxHashMap().getAuxCount(), 4);

0 commit comments

Comments
 (0)