We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a51b082 commit 799cb74Copy full SHA for 799cb74
1 file changed
src/paimon/format/avro/avro_stats_extractor_test.cpp
@@ -68,7 +68,7 @@ class AvroStatsExtractorTest : public ::testing::Test {
68
ASSERT_OK(writer->Finish());
69
70
ASSERT_OK_AND_ASSIGN(auto file_status, fs->GetFileStatus(file_path));
71
- ASSERT_TRUE(file_status->GetLen() > 0);
+ ASSERT_GT(file_status->GetLen(), 0);
72
}
73
};
74
@@ -214,4 +214,4 @@ TEST_F(AvroStatsExtractorTest, TestNullForAllType) {
214
ASSERT_EQ(stats.max_values_.HashCode(), 0xf890741a);
215
216
217
-} // namespace paimon::avro::test
+} // namespace paimon::avro::test
0 commit comments