Skip to content

Commit

Permalink
Fix typo in result value.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice authored Dec 17, 2024
1 parent 1010775 commit 6fbd870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/hashing/xxhash_32_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TEST_F(XXHash_32_Test, StringType)
// Expected results were generated with the reference implementation:
// https://github.com/Cyan4973/xxHash/blob/dev/xxhash.h
auto expected =
cudf::test::fixed_width_column_wrapper<uint32_t>({320624298u, 1612654309u, 1409499099u});
cudf::test::fixed_width_column_wrapper<uint32_t>({320624298u, 1612654309u, 1409499009u});

CUDF_TEST_EXPECT_COLUMNS_EQUAL(output->view(), expected);
}

0 comments on commit 6fbd870

Please sign in to comment.