Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/practice/diamond/diamond_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ TEST_CASE("Degenerate case with a single 'A' row",
REQUIRE(diamond::rows('A') == expected);
}

#if defined(EXERCISM_RUN_ALL_TESTS)
TEST_CASE("Degenerate case with no row containing 3 distinct groups of spaces",
"[bd6a6d78-9302-42e9-8f60-ac1461e9abae]") {
std::vector<std::string> expected{" A ", "B B", " A "};
Expand Down Expand Up @@ -106,5 +107,4 @@ TEST_CASE("Largest possible diamond",
" A "};
REQUIRE(diamond::rows('Z') == expected);
}
#if defined(EXERCISM_RUN_ALL_TESTS)
#endif