updated test values after unifying function forms

This commit is contained in:
Jonathan Shook 2020-07-17 18:52:04 -05:00
parent a341974707
commit b1cd3342f5
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ public class MapFunctionsTest {
Map<Object, Object> mv2 = mf2.apply(5L);
assertThat(mv2).containsAllEntriesOf(Map.of(
"4464361019114304900","4464361019114304900",
"44643610191143049001","44643610191143049001"
"7193842733564486108","7193842733564486108"
));
}

View File

@ -20,7 +20,7 @@ public class SetFunctionsTest {
public void testSetHashed() {
SetHashed f1 = new SetHashed((DoubleUnaryOperator) i -> i, (DoubleToLongFunction) i -> (long) i);
Set<Object> set = f1.apply(2L);
assertThat(set).contains(8218881827949364224L, 8.2188818279493642E18);
assertThat(set).contains(8.2188818279493642E18, 3417914777143645696L);
}
@Test