Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Jan 2, 2025
1 parent 7a6dad1 commit 6d2da70
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,9 @@ TEST_F(TesseractTaskComposerPlanningUnit, TaskComposerFormatAsResultTaskTests)
{ // Test run method
auto data = std::make_unique<TaskComposerDataStorage>();
CompositeInstruction compare = test_suite::jointInterpolateExampleProgramABB(false);
data->setData("input_data", test_suite::jointInterpolateExampleProgramABB(true));
CompositeInstruction input_data = test_suite::jointInterpolateExampleProgramABB(true);
input_data.setUUID(compare.getUUID());
data->setData("input_data", input_data);
auto context = std::make_unique<TaskComposerContext>("abc", std::move(data));
std::vector<std::string> input_keys{ "input_data" };
std::vector<std::string> output_keys{ "output_data" };
Expand Down

0 comments on commit 6d2da70

Please sign in to comment.