From b5faaf32d09c5ac5ba2dfa72308374b0973c3e55 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Fri, 7 Feb 2025 21:33:49 +0100 Subject: [PATCH] Fix pre-commit --- .../src/components/ExampleFunctionalConsumerMultiple.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/k4FWCoreTest/src/components/ExampleFunctionalConsumerMultiple.cpp b/test/k4FWCoreTest/src/components/ExampleFunctionalConsumerMultiple.cpp index 1fd5c124..79a1235f 100644 --- a/test/k4FWCoreTest/src/components/ExampleFunctionalConsumerMultiple.cpp +++ b/test/k4FWCoreTest/src/components/ExampleFunctionalConsumerMultiple.cpp @@ -118,8 +118,8 @@ struct ExampleFunctionalConsumerMultiple final for (size_t j = 0; j < links.size(); j++) { if (links[j].getFrom() != recos[j] || links[j].getTo() != particles[j]) { std::stringstream error; - error << "Wrong data in links collection, link" << j << " expected " << recos[j].id() << ", " << particles[j].id() - << " got " << links[j].getFrom().id() << ", " << links[j].getTo().id(); + error << "Wrong data in links collection, link" << j << " expected " << recos[j].id() << ", " + << particles[j].id() << " got " << links[j].getFrom().id() << ", " << links[j].getTo().id(); throw std::runtime_error(error.str()); } }