Skip to content

Commit

Permalink
mP1/walkingkooka#2773 SortedSets & ImmutableSortedSet
Browse files Browse the repository at this point in the history
- mP1/walkingkooka#2773
- SortedSets & ImmutableSortedSet
  • Loading branch information
mP1 committed Sep 5, 2024
1 parent 10d0c26 commit 2ab0a9d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package walkingkooka.tree.expression.function.datetime;

import org.junit.jupiter.api.Test;
import walkingkooka.collect.set.Sets;
import walkingkooka.collect.set.SortedSets;
import walkingkooka.reflect.JavaVisibility;
import walkingkooka.reflect.PublicStaticHelperTesting;
import walkingkooka.text.CaseSensitivity;
Expand Down Expand Up @@ -48,12 +48,12 @@ public void testExpressionFunctionProvider() {
return n;
}
}
).collect(Collectors.toCollection(Sets::sorted)),
).collect(Collectors.toCollection(SortedSets::tree)),
DateTimeExpressionFunctions.expressionFunctionProvider(CaseSensitivity.SENSITIVE)
.expressionFunctionInfos()
.stream()
.map(i -> i.name().value())
.collect(Collectors.toCollection(Sets::sorted))
.collect(Collectors.toCollection(SortedSets::tree))
);
}

Expand Down

0 comments on commit 2ab0a9d

Please sign in to comment.