Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
schuhmaj committed May 7, 2024
1 parent f1f26d7 commit b8a7fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/model/GoogleTestMatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ MATCHER_P(FloatContainter1D, container, "Comparing 1D Containers") {
}

// Using the FloatContainter1D would be nice, but this leads to issues with template instatantation
// Hence, this easy way and a double-for-loop (but at least better fitting messages)
// Hence, this is the easy way and a double-for-loop (but at least better fitting messages)
MATCHER_P(FloatContainter2D, container, "Comparing 2D Containers") {
if (container.size() != arg.size()) {
*result_listener << "The container sizes do not match. Sizes: " << container.size() << " != " << arg.size();
Expand All @@ -43,7 +43,7 @@ MATCHER_P(FloatContainter2D, container, "Comparing 2D Containers") {
}

// Using the FloatContainter2D would be nice, but this leads to issues with template instatantation
// Hence, this easy way and a triple-for-loop (but at least better fitting messages)
// Hence, this is the easy way and a triple-for-loop (but at least better fitting messages)
MATCHER_P(FloatContainter3D, container, "Comparing 3D Containers") {
if (container.size() != arg.size()) {
*result_listener << "The container sizes do not match. Sizes: " << container.size() << " != " << arg.size();
Expand Down

0 comments on commit b8a7fa3

Please sign in to comment.