Skip to content

Commit

Permalink
Autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Dec 4, 2024
1 parent dbefb7e commit 991cf68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/util/thread_pool_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::chrono::steady_clock::time_point>(kNumTasks);
auto futures = std::vector<Future<int>>(kNumTasks);
auto sleep_task = []() { SleepABit(); };
Expand Down Expand Up @@ -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<std::chrono::steady_clock::time_point>(kNumTasks);
auto futures = std::vector<Future<int>>(kNumTasks);

Expand Down

0 comments on commit 991cf68

Please sign in to comment.