Skip to content

Commit a511731

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent d74bb22 commit a511731

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/btree_index_tests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
#include "common/config.hpp"
1515
#include "common/value.hpp"
16-
#include "storage/buffer_pool_manager.hpp"
1716
#include "storage/btree_index.hpp"
17+
#include "storage/buffer_pool_manager.hpp"
1818
#include "storage/heap_table.hpp"
1919
#include "storage/storage_manager.hpp"
2020

@@ -29,8 +29,8 @@ class BTreeIndexTests : public ::testing::Test {
2929
void SetUp() override {
3030
disk_manager_ = std::make_unique<StorageManager>("./test_idx_data");
3131
disk_manager_->create_dir_if_not_exists();
32-
bpm_ = std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE,
33-
*disk_manager_);
32+
bpm_ =
33+
std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager_);
3434

3535
index_ = std::make_unique<BTreeIndex>("test_index", *bpm_, ValueType::TYPE_INT64);
3636
}

0 commit comments

Comments
 (0)