Skip to content

Commit 7f9e4d4

Browse files
committed
wip
1 parent cdd3729 commit 7f9e4d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_de_serialization_with_files.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ void compare_record_batches(
6363
const auto& column_1 = record_batches_1[i].get_column(y);
6464
const auto& column_2 = record_batches_2[i].get_column(y);
6565
REQUIRE_EQ(column_1.size(), column_2.size());
66+
CHECK_EQ(record_batches_1[i].names()[y], record_batches_2[i].names()[y]);
6667
for (size_t z = 0; z < column_1.size(); z++)
6768
{
6869
const auto col_name = column_1.name().value_or("NA");
6970
INFO("Comparing batch " << i << ", column " << y << " named :" << col_name << " , row " << z);
7071
REQUIRE_EQ(column_1.data_type(), column_2.data_type());
71-
CHECK_EQ(column_1.name(), column_2.name());
7272
const auto& column_1_value = column_1[z];
7373
const auto& column_2_value = column_2[z];
7474
CHECK_EQ(column_1_value, column_2_value);

0 commit comments

Comments
 (0)