Skip to content

Commit

Permalink
Merge pull request #60 from KIT-MRT/fix_unit_test_typo
Browse files Browse the repository at this point in the history
Fix copy paste error in nested arbitrator unit test
  • Loading branch information
ll-nick authored Oct 18, 2024
2 parents 7396085 + bcdbe09 commit ae7038e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/nested_arbitrators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ TEST_F(NestedArbitratorsTest, ToYaml) {
EXPECT_EQ("high_cost", yaml["options"][0]["behavior"]["options"][1]["behavior"]["name"].as<std::string>());

ASSERT_EQ(2, yaml["options"][1]["behavior"]["options"].size());
EXPECT_EQ(false, yaml["options"][0]["behavior"]["activeBehavior"].IsDefined());
EXPECT_EQ(false, yaml["options"][1]["behavior"]["activeBehavior"].IsDefined());
EXPECT_EQ("HighPriority", yaml["options"][1]["behavior"]["options"][0]["behavior"]["name"].as<std::string>());
EXPECT_EQ("LowPriority", yaml["options"][1]["behavior"]["options"][1]["behavior"]["name"].as<std::string>());

Expand Down

0 comments on commit ae7038e

Please sign in to comment.