Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
aocsa committed Nov 21, 2023
1 parent 3ac3ccb commit 78e7f48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/tests/ast/transform_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ TEST_F(TransformTest, DeeplyNestedArithmeticLogicalExpression)
// - Left Operand ($L): (-(-(+(-($0, $0), $0), $0), $0), $0)
// - Right Operand ($R): -($1, +($1, +($1, -($1, $1))))
// Explanation:
// If all $1 values and $R values are zeros, then the result is true because of the equality
// check, combined with the OR operator at OR(<($L, $0), ==($1, $R))
// If all $1 values and $R values are zeros, the result is true because of the equality check
// combined with the OR operator in OR(<($L, $0), ==($1, $R)).

auto result = cudf::compute_column(table, expression_tree);
auto expected = column_wrapper<bool>{true, true, true};
Expand Down

0 comments on commit 78e7f48

Please sign in to comment.