Skip to content

Commit 5df8607

Browse files
committed
Fix lint
1 parent 6da4957 commit 5df8607

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cpp/src/arrow/acero/util_test.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,9 @@ TEST(BackpressureConcurrentQueue, BackpressureTest) {
304304
TEST(BackpressureConcurrentQueue, BackpressureTestStayUnpaused) {
305305
BackpressureTestExecNode dummy_node;
306306
auto ctrl = std::make_unique<TestBackpressureControl>(&dummy_node);
307-
ASSERT_OK_AND_ASSIGN(auto handler, BackpressureHandler::Make(/*low_threshold=*/2, /*high_threshold=*/4, std::move(ctrl)));
307+
ASSERT_OK_AND_ASSIGN(
308+
auto handler, BackpressureHandler::Make(/*low_threshold=*/2, /*high_threshold=*/4,
309+
std::move(ctrl)));
308310
BackpressureConcurrentQueue<int> queue(std::move(handler));
309311

310312
queue.Push(6);

0 commit comments

Comments
 (0)