Skip to content

Commit b1ebcab

Browse files
author
xiao.dong
committed
fix cpplint
1 parent e63f60e commit b1ebcab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iceberg/test/inclusive_metrics_evaluator_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ class InclusiveMetricsEvaluatorTest : public ::testing::Test {
101101
void TestCase(const std::shared_ptr<Expression>& unbound, bool expected_result) {
102102
ICEBERG_UNWRAP_OR_FAIL(auto evaluator,
103103
InclusiveMetricsEvaluator::Make(unbound, schema_, true));
104-
auto file = PrepareDataFile("20251128", 10, 1024, {{"id", int64_t(100)}},
105-
{{"id", int64_t(200)}});
104+
auto file = PrepareDataFile("20251128", 10, 1024, {{"id", static_cast<int64_t>(100)}},
105+
{{"id", static_cast<int64_t>(200)}});
106106
auto result = evaluator->Eval(*file);
107107
ASSERT_TRUE(result.has_value());
108108
ASSERT_EQ(result.value(), expected_result) << unbound->ToString();

0 commit comments

Comments
 (0)