From 78e7f48972efd9386a77cd71bcd5a8e5cf7c6659 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 21 Nov 2023 21:17:31 +0000 Subject: [PATCH] minor change --- cpp/tests/ast/transform_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/tests/ast/transform_tests.cpp b/cpp/tests/ast/transform_tests.cpp index 418c89a7e73..a1faa2293e4 100644 --- a/cpp/tests/ast/transform_tests.cpp +++ b/cpp/tests/ast/transform_tests.cpp @@ -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{true, true, true};