diff --git a/velox/connectors/hive/storage_adapters/abfs/tests/AbfsFileSystemTest.cpp b/velox/connectors/hive/storage_adapters/abfs/tests/AbfsFileSystemTest.cpp index a51ba68fe47a..f286d7eca14d 100644 --- a/velox/connectors/hive/storage_adapters/abfs/tests/AbfsFileSystemTest.cpp +++ b/velox/connectors/hive/storage_adapters/abfs/tests/AbfsFileSystemTest.cpp @@ -207,10 +207,8 @@ TEST_F(AbfsFileSystemTest, fileHandleWithProperties) { FileHandleFactory factory( std::make_unique>(1), std::make_unique(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()); }