Skip to content

Commit ce8bc31

Browse files
committed
Clang reformat
1 parent 9797667 commit ce8bc31

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

exercises/practice/flower-field/flower_field_test.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,24 @@ TEST_CASE("no columns", "[4b4134ec-e20f-439c-a295-664c38950ba1]") {
2424
REQUIRE(expected == flower_field::annotate({""}));
2525
}
2626

27-
TEST_CASE("no flowers","[d774d054-bbad-4867-88ae-069cbd1c4f92]") {
27+
TEST_CASE("no flowers", "[d774d054-bbad-4867-88ae-069cbd1c4f92]") {
2828
const std::vector<std::string> expected{" ", " ", " "};
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

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

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

0 commit comments

Comments
 (0)