Skip to content

Commit

Permalink
Fixed static variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Alfonsi committed Jan 17, 2024
1 parent 65d2955 commit 4fa4604
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void testTransformationLogic() throws Exception {
public void testContains() throws Exception {
RBMIntKeyLookupStore kls = new RBMIntKeyLookupStore(RBMIntKeyLookupStore.KeystoreModuloValue.TWO_TO_TWENTY_NINE, 0L);
RBMIntKeyLookupStore noModuloKls = new RBMIntKeyLookupStore(RBMIntKeyLookupStore.KeystoreModuloValue.NONE, 0L);
for (int i = 0; i < kls.REFRESH_SIZE_EST_INTERVAL + 1000; i++) {
for (int i = 0; i < RBMIntKeyLookupStore.REFRESH_SIZE_EST_INTERVAL + 1000; i++) {
// set upper bound > number of elements to trigger a size check, ensuring we test that too
kls.add(i);
assertTrue(kls.contains(i));
Expand Down

0 comments on commit 4fa4604

Please sign in to comment.