@@ -75,8 +75,7 @@ class SstFileIOTest : public ::testing::TestWithParam<SstFileParam> {
7575 std::shared_ptr<paimon::MemoryPool> pool_;
7676
7777 MemorySlice::SliceComparator comparator_;
78- std::shared_ptr<CacheManager> cache_manager_ =
79- std::make_shared<CacheManager>(1024 * 1024 , 0.0 );
78+ std::shared_ptr<CacheManager> cache_manager_ = std::make_shared<CacheManager>(1024 * 1024 , 0.0 );
8079};
8180
8281TEST_P (SstFileIOTest, TestSimple) {
@@ -142,7 +141,8 @@ TEST_P(SstFileIOTest, TestSimple) {
142141
143142 // test read
144143 ASSERT_OK_AND_ASSIGN (in, fs_->Open (index_path));
145- ASSERT_OK_AND_ASSIGN (auto reader, SstFileReader::Create (pool_, in, comparator_, cache_manager_));
144+ ASSERT_OK_AND_ASSIGN (auto reader,
145+ SstFileReader::Create (pool_, in, comparator_, cache_manager_));
146146
147147 // not exist key
148148 std::string k0 = " k0" ;
@@ -175,7 +175,8 @@ TEST_P(SstFileIOTest, TestJavaCompatibility) {
175175 ASSERT_OK_AND_ASSIGN (std::shared_ptr<InputStream> in, fs_->Open (file));
176176
177177 // test read
178- ASSERT_OK_AND_ASSIGN (auto reader, SstFileReader::Create (pool_, in, comparator_, cache_manager_));
178+ ASSERT_OK_AND_ASSIGN (auto reader,
179+ SstFileReader::Create (pool_, in, comparator_, cache_manager_));
179180 // not exist key
180181 std::string k0 = " 10000" ;
181182 ASSERT_FALSE (reader->Lookup (std::make_shared<Bytes>(k0, pool_.get ())).value ());
0 commit comments