Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix tests
  • Loading branch information
uros-db committed Jun 19, 2024
commit 9ef928afd1bf071db81ffcc1fdc25bf6ffb20d1f
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ public void testCompare() throws SparkException {
private void assertLowerCaseCodePoints(UTF8String target, UTF8String expected,
Boolean useCodePoints) {
if (useCodePoints) {
assertEquals(expected.toString(),
CollationAwareUTF8String.lowerCaseCodePoints(target));
assertEquals(expected, CollationAwareUTF8String.lowerCaseCodePoints(target));
} else {
assertEquals(expected, target.toLowerCase());
}
Expand Down