Skip to content

Commit 9797667

Browse files
committed
Reformat
1 parent 5b93638 commit 9797667

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

exercises/practice/flower-field/flower_field_test.cpp

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,25 @@ 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", "[225176a0-725e-43cd-aa13-9dced501f16e]") {
32+
TEST_CASE("garden full of flowers",
33+
"[225176a0-725e-43cd-aa13-9dced501f16e]") {
3334
const std::vector<std::string> expected{"***", "***", "***"};
3435
REQUIRE(expected == flower_field::annotate({"***", "***", "***"}));
3536
}
3637

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

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

0 commit comments

Comments
 (0)