Skip to content

Commit 5b93638

Browse files
committed
Reformat
1 parent 97c11c5 commit 5b93638

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

exercises/practice/flower-field/flower_field_test.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,17 @@ TEST_CASE("no flowers", "[d774d054-bbad-4867-88ae-069cbd1c4f92]") {
2929
REQUIRE(expected == flower_field::annotate({" ", " ", " "}));
3030
}
3131

32-
TEST_CASE("garden full of flowers",
33-
"[225176a0-725e-43cd-aa13-9dced501f16e]") {
32+
TEST_CASE("garden full of flowers", "[225176a0-725e-43cd-aa13-9dced501f16e]") {
3433
const std::vector<std::string> expected{"***", "***", "***"};
3534
REQUIRE(expected == flower_field::annotate({"***", "***", "***"}));
3635
}
3736

38-
TEST_CASE("flower surrounded by spaces",
39-
"[3f345495-f1a5-4132-8411-74bd7ca08c49]") {
37+
TEST_CASE("flower surrounded by spaces", "[3f345495-f1a5-4132-8411-74bd7ca08c49]") {
4038
const std::vector<std::string> expected{"111", "1*1", "111"};
4139
REQUIRE(expected == flower_field::annotate({" ", " * ", " "}));
4240
}
4341

44-
TEST_CASE("space surrounded by flowers",
45-
"[6cb04070-4199-4ef7-a6fa-92f68c660fca]") {
42+
TEST_CASE("space surrounded by flowers", "[6cb04070-4199-4ef7-a6fa-92f68c660fca]") {
4643
const std::vector<std::string> expected{"***", "*8*", "***"};
4744
REQUIRE(expected == flower_field::annotate({"***", "* *", "***"}));
4845
}

0 commit comments

Comments
 (0)