Skip to content

Commit 615fa1c

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent 0f006ed commit 615fa1c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/heap_table_tests.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ using cloudsql::config::Config;
2626
namespace {
2727

2828
class HeapTableTests : public ::testing::Test {
29-
protected:
29+
protected:
3030
void SetUp() override {
3131
disk_manager_ = std::make_unique<StorageManager>("./test_data");
3232
disk_manager_->create_dir_if_not_exists();
33-
bpm_ = std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE,
34-
*disk_manager_);
33+
bpm_ =
34+
std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager_);
3535

3636
// Create schema for test table
3737
schema_ = std::make_unique<Schema>();
@@ -210,7 +210,7 @@ TEST_F(HeapTableTests, ScanEmptyTable) {
210210
EXPECT_FALSE(it.is_done()); // Iterator not done before trying to read
211211
Tuple tuple;
212212
EXPECT_FALSE(it.next(tuple)); // No tuples to read
213-
EXPECT_TRUE(it.is_done()); // Now at end
213+
EXPECT_TRUE(it.is_done()); // Now at end
214214
}
215215

216216
TEST_F(HeapTableTests, ScanAllRows) {

0 commit comments

Comments
 (0)