Skip to content

Commit 9209c45

Browse files
committed
name test containers debugging
to simplify debugging.
1 parent 8ef227d commit 9209c45

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
@@ -336,7 +336,7 @@ TEST(CostTerm, CompositeSolutions) {
336336
{
337337
auto s1{ std::make_unique<ForwardMockup>() };
338338
auto s2{ std::make_unique<ForwardMockup>() };
339-
auto c1{ std::make_unique<SerialContainer>() };
339+
auto c1{ std::make_unique<SerialContainer>("c1") };
340340
auto constant1{ std::make_shared<cost::Constant>(1.0) };
341341
s1->setCostTerm(constant1);
342342
s2->setCostTerm(constant1);
@@ -360,7 +360,7 @@ TEST(CostTerm, CompositeSolutionsContainerCost) {
360360
auto s1_ptr{ s1.get() };
361361
auto s2{ std::make_unique<ForwardMockup>() };
362362

363-
auto c1{ std::make_unique<SerialContainer>() };
363+
auto c1{ std::make_unique<SerialContainer>("c1") };
364364
c1->add(std::move(s1));
365365
c1->add(std::move(s2));
366366

0 commit comments

Comments
 (0)