Skip to content

Commit 0063583

Browse files
authored
fix: missing closing tag for testcase (#927)
thanks to Manuel Grobbauer for pointing this out
1 parent 3e675fe commit 0063583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/speedywagon/speedywagon_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ TEST_CASE("activity_counter: sum for a nullptr", "[task_2]") {
3434
REQUIRE(speedywagon::activity_counter(nullptr, 0) == 0);
3535
}
3636

37-
TEST_CASE("alarm_control: works correctly for pointer", "[task_3") {
37+
TEST_CASE("alarm_control: works correctly for pointer", "[task_3]") {
3838
speedywagon::pillar_men_sensor* kars_in_space{nullptr};
3939
REQUIRE_FALSE(speedywagon::alarm_control(kars_in_space));
4040
}

0 commit comments

Comments
 (0)