File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ using cloudsql::config::Config;
2626namespace {
2727
2828class 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
216216TEST_F (HeapTableTests, ScanAllRows) {
You can’t perform that action at this time.
0 commit comments