Skip to content

Commit

Permalink
Added new test to run the CI again on Git
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnnathanalmeida committed May 23, 2022
1 parent 03b4105 commit b3ec841
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cpp/src/gandiva/precompiled/string_ops_test.cc
Expand Up @@ -887,6 +887,9 @@ TEST(TestGdvFnStubs, TestCastBinaryUtf8) {
out = castBINARY_utf8(input, 3, &out_len);
EXPECT_EQ(std::string(out, out_len), input);

out = castBINARY_utf8(input, 2, &out_len);
EXPECT_EQ(std::string(out, out_len), "ab");

out = castBINARY_utf8(input, 1, &out_len);
EXPECT_EQ(std::string(out, out_len), "a");

Expand Down

0 comments on commit b3ec841

Please sign in to comment.