Skip to content

Commit

Permalink
fix: missing closing tag for testcase (#927)
Browse files Browse the repository at this point in the history
thanks to Manuel Grobbauer for pointing this out
  • Loading branch information
senarclens authored Nov 20, 2024
1 parent 3e675fe commit 0063583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/speedywagon/speedywagon_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ TEST_CASE("activity_counter: sum for a nullptr", "[task_2]") {
REQUIRE(speedywagon::activity_counter(nullptr, 0) == 0);
}

TEST_CASE("alarm_control: works correctly for pointer", "[task_3") {
TEST_CASE("alarm_control: works correctly for pointer", "[task_3]") {
speedywagon::pillar_men_sensor* kars_in_space{nullptr};
REQUIRE_FALSE(speedywagon::alarm_control(kars_in_space));
}
Expand Down

0 comments on commit 0063583

Please sign in to comment.