Skip to content

Commit 30b085b

Browse files
committed
name test containers debugging
to simplify debugging.
1 parent d4b03ed commit 30b085b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/test/test_cost_terms.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ TEST(CostTerm, CompositeSolutions) {
310310
{
311311
auto s1{ std::make_unique<ForwardCostMockup>() };
312312
auto s2{ std::make_unique<ForwardCostMockup>() };
313-
auto c1{ std::make_unique<SerialContainer>() };
313+
auto c1{ std::make_unique<SerialContainer>("c1") };
314314
auto constant1{ std::make_shared<cost::Constant>(1.0) };
315315
s1->setCostTerm(constant1);
316316
s2->setCostTerm(constant1);
@@ -334,7 +334,7 @@ TEST(CostTerm, CompositeSolutionsContainerCost) {
334334
auto s1_ptr{ s1.get() };
335335
auto s2{ std::make_unique<ForwardTrajectoryMockup>() };
336336

337-
auto c1{ std::make_unique<SerialContainer>() };
337+
auto c1{ std::make_unique<SerialContainer>("c1") };
338338
c1->add(std::move(s1));
339339
c1->add(std::move(s2));
340340

0 commit comments

Comments
 (0)