Skip to content

Commit 7009900

Browse files
committed
Please consider the following formatting changes
1 parent b529d89 commit 7009900

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Framework/Core/test/test_MessageSet.cxx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
using namespace o2::framework;
1717

18-
TEST_CASE("MessageSet") {
18+
TEST_CASE("MessageSet")
19+
{
1920
o2::framework::MessageSet msgSet;
2021
std::vector<fair::mq::MessagePtr> ptrs;
2122
std::unique_ptr<fair::mq::Message> msg(nullptr);
@@ -34,7 +35,8 @@ TEST_CASE("MessageSet") {
3435
REQUIRE(msgSet.pairMap[0].payloadIndex == 0);
3536
}
3637

37-
TEST_CASE("MessageSetWithFunction") {
38+
TEST_CASE("MessageSetWithFunction")
39+
{
3840
std::vector<fair::mq::MessagePtr> ptrs;
3941
std::unique_ptr<fair::mq::Message> msg(nullptr);
4042
std::unique_ptr<fair::mq::Message> msg2(nullptr);
@@ -52,7 +54,8 @@ TEST_CASE("MessageSetWithFunction") {
5254
REQUIRE(msgSet.pairMap[0].payloadIndex == 0);
5355
}
5456

55-
TEST_CASE("MessageSetWithMultipart") {
57+
TEST_CASE("MessageSetWithMultipart")
58+
{
5659
std::vector<fair::mq::MessagePtr> ptrs;
5760
std::unique_ptr<fair::mq::Message> msg(nullptr);
5861
std::unique_ptr<fair::mq::Message> msg2(nullptr);
@@ -74,13 +77,14 @@ TEST_CASE("MessageSetWithMultipart") {
7477
REQUIRE(msgSet.pairMap[1].payloadIndex == 1);
7578
}
7679

77-
TEST_CASE("MessageSetAddPartRef") {
80+
TEST_CASE("MessageSetAddPartRef")
81+
{
7882
std::vector<fair::mq::MessagePtr> ptrs;
7983
std::unique_ptr<fair::mq::Message> msg(nullptr);
8084
std::unique_ptr<fair::mq::Message> msg2(nullptr);
8185
ptrs.emplace_back(std::move(msg));
8286
ptrs.emplace_back(std::move(msg2));
83-
PartRef ref {std::move(msg), std::move(msg2)};
87+
PartRef ref{std::move(msg), std::move(msg2)};
8488
o2::framework::MessageSet msgSet;
8589
msgSet.add(std::move(ref));
8690

0 commit comments

Comments
 (0)