Skip to content

Commit 799cb74

Browse files
committed
fix
1 parent a51b082 commit 799cb74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/paimon/format/avro/avro_stats_extractor_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class AvroStatsExtractorTest : public ::testing::Test {
6868
ASSERT_OK(writer->Finish());
6969

7070
ASSERT_OK_AND_ASSIGN(auto file_status, fs->GetFileStatus(file_path));
71-
ASSERT_TRUE(file_status->GetLen() > 0);
71+
ASSERT_GT(file_status->GetLen(), 0);
7272
}
7373
};
7474

@@ -214,4 +214,4 @@ TEST_F(AvroStatsExtractorTest, TestNullForAllType) {
214214
ASSERT_EQ(stats.max_values_.HashCode(), 0xf890741a);
215215
}
216216

217-
} // namespace paimon::avro::test
217+
} // namespace paimon::avro::test

0 commit comments

Comments
 (0)