Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowe committed Jul 29, 2021
1 parent b955504 commit 437472c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/src/test/java/ai/rapids/cudf/TableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1686,8 +1686,8 @@ void testConditionalFullJoinGatherMaps() {
try (Table left = new Table.TestBuilder().column(2, 3, 9, 0, 1, 7, 4, 6, 5, 8).build();
Table right = new Table.TestBuilder().column(6, 5, 9, 8, 10, 32).build();
Table expected = new Table.TestBuilder()
.column( 0, 1, 2, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 9, inv, inv, inv)
.column(inv, inv, 0, 1, 3, inv, inv, 0, 1, inv, 1, inv, 0, 1, 2, 4, 5)
.column(inv, inv, inv, 0, 1, 2, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 9)
.column( 2, 4, 5, inv, inv, 0, 1, 3, inv, inv, 0, 1, inv, 1, inv, 0, 1)
.build();
CompiledExpression condition = expr.compile()) {
GatherMap[] maps = left.fullJoinGatherMaps(right, condition, false);
Expand Down Expand Up @@ -1832,7 +1832,7 @@ void testConditionalLeftAntiJoinGatherMap() {
.column(0, 1, 3, 4, 6, 8) // left
.build();
CompiledExpression condition = expr.compile();
GatherMap map = left.leftSemiJoinGatherMap(right, condition, false)) {
GatherMap map = left.leftAntiJoinGatherMap(right, condition, false)) {
verifySemiJoinGatherMap(map, expected);
}
}
Expand Down

0 comments on commit 437472c

Please sign in to comment.