Skip to content

Commit 4af13f6

Browse files
committed
Fix linting
1 parent b519f4d commit 4af13f6

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

cpp/src/arrow/dataset/file_parquet_encryption_test.cc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ const auto kAllParamValues = ::testing::Values(
8383
EncryptionTestParam{false, true, true}, EncryptionTestParam{true, true, true});
8484

8585
// Base class to test writing and reading encrypted dataset.
86-
template <typename T, typename = typename std::enable_if_t<
87-
std::is_base_of_v<EncryptionTestParam, T>>>
86+
template <typename T,
87+
typename = typename std::enable_if_t<std::is_base_of_v<EncryptionTestParam, T>>>
8888
class DatasetEncryptionTestBase : public testing::TestWithParam<T> {
8989
public:
9090
#ifdef ARROW_VALGRIND
@@ -305,7 +305,8 @@ class DatasetEncryptionTestBase : public testing::TestWithParam<T> {
305305
// Read dataset into table
306306
ARROW_ASSIGN_OR_RAISE(auto scanner_builder, dataset->NewScan());
307307
ARROW_ASSIGN_OR_RAISE(auto scanner, scanner_builder->Finish());
308-
ARROW_EXPECT_OK(scanner_builder->UseThreads(testing::WithParamInterface<T>::GetParam().concurrently));
308+
ARROW_EXPECT_OK(scanner_builder->UseThreads(
309+
testing::WithParamInterface<T>::GetParam().concurrently));
309310
return scanner->ToTable();
310311
}
311312

@@ -317,7 +318,8 @@ class DatasetEncryptionTestBase : public testing::TestWithParam<T> {
317318
}
318319

319320
protected:
320-
std::string base_dir_ = this->GetParam().concurrently ? "thread-1" : std::string(kBaseDir);
321+
std::string base_dir_ =
322+
this->GetParam().concurrently ? "thread-1" : std::string(kBaseDir);
321323
std::shared_ptr<fs::FileSystem> file_system_;
322324
std::shared_ptr<Table> table_, expected_table_;
323325
std::shared_ptr<Partitioning> partitioning_;

0 commit comments

Comments
 (0)