Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
acvictor committed May 31, 2024
1 parent 8545b80 commit b4ae265
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,8 @@ TEST_F(AbfsFileSystemTest, fileHandleWithProperties) {
FileHandleFactory factory(
std::make_unique<SimpleLRUCache<std::string, FileHandle>>(1),
std::make_unique<FileHandleGenerator>(hiveConfig));
FileProperties properties = {
15 + kOneMB,
1
} auto fileHandle = factory.generate(fullFilePath, &properties);
FileProperties properties = {15 + kOneMB, 1};
auto fileHandle = factory.generate(fullFilePath, &properties);
readData(fileHandle->file.get());
}

Expand Down

0 comments on commit b4ae265

Please sign in to comment.