From 991cf68db8f1f628398a12b0468b97df9aafbc56 Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Wed, 4 Dec 2024 14:53:47 +0000 Subject: [PATCH] Autoformat --- cpp/src/arrow/util/thread_pool_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/arrow/util/thread_pool_test.cc b/cpp/src/arrow/util/thread_pool_test.cc index 8ad2c6032cfc2..7652870540986 100644 --- a/cpp/src/arrow/util/thread_pool_test.cc +++ b/cpp/src/arrow/util/thread_pool_test.cc @@ -580,7 +580,7 @@ TEST_F(TestThreadPool, Spawn) { TEST_F(TestThreadPool, TasksRunInPriorityOrder) { auto pool = this->MakeThreadPool(1); - constexpr int kNumTasks = 10; + constexpr int kNumTasks = 10; auto recorded_times = std::vector(kNumTasks); auto futures = std::vector>(kNumTasks); auto sleep_task = []() { SleepABit(); }; @@ -609,7 +609,7 @@ TEST_F(TestThreadPool, TasksRunInPriorityOrder) { TEST_F(TestThreadPool, TasksOfEqualPriorityRunInSpawnOrder) { auto pool = this->MakeThreadPool(1); - constexpr int kNumTasks = 10; + constexpr int kNumTasks = 10; auto recorded_times = std::vector(kNumTasks); auto futures = std::vector>(kNumTasks);