From cdffbb8a7f9a88a9f989eac511d866333bcad77d Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 7 Jan 2026 09:55:27 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/DataProcessingHelpers.h | 4 ++-- Framework/Core/test/test_ForwardInputs.cxx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Framework/Core/include/Framework/DataProcessingHelpers.h b/Framework/Core/include/Framework/DataProcessingHelpers.h index 34bb87613d920..581e5649e71a9 100644 --- a/Framework/Core/include/Framework/DataProcessingHelpers.h +++ b/Framework/Core/include/Framework/DataProcessingHelpers.h @@ -54,8 +54,8 @@ struct DataProcessingHelpers { static TransitionHandlingState updateStateTransition(ServiceRegistryRef const& ref, ProcessingPolicies const& policies); /// Helper to route messages for forwarding static std::vector routeForwardedMessages(FairMQDeviceProxy& proxy, - std::vector& currentSetOfInputs, - const bool copyByDefault, bool consume); + std::vector& currentSetOfInputs, + const bool copyByDefault, bool consume); }; } // namespace o2::framework #endif // O2_FRAMEWORK_DATAPROCESSINGHELPERS_H_ diff --git a/Framework/Core/test/test_ForwardInputs.cxx b/Framework/Core/test/test_ForwardInputs.cxx index 7ddbc831edad2..1dd809dee3dd2 100644 --- a/Framework/Core/test/test_ForwardInputs.cxx +++ b/Framework/Core/test/test_ForwardInputs.cxx @@ -201,7 +201,6 @@ TEST_CASE("ForwardInputsSingleMessageSingleRouteAtEOS") REQUIRE(messageSet.size() == 1); currentSetOfInputs.emplace_back(std::move(messageSet)); - auto result = o2::framework::DataProcessingHelpers::routeForwardedMessages(proxy, currentSetOfInputs, copyByDefault, consume); REQUIRE(result.size() == 1); // One route REQUIRE(result[0].Size() == 0); // FIXME: this is an actual error. It should be 2. However it cannot really happen.