Skip to content

Commit 85944b1

Browse files
committed
Fixed test section name
1 parent e71ebd8 commit 85944b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/algorithm.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ TEST_CASE("Starts with") {
12901290
}
12911291

12921292
TEST_CASE("Ends with") {
1293-
SECTION("Non bidirectional ") {
1293+
SECTION("Forward non sized") {
12941294
auto iterable = lz::c_string("");
12951295
auto iterable2 = lz::c_string("H");
12961296
REQUIRE(!lz::ends_with(iterable, iterable2));
@@ -1308,7 +1308,7 @@ TEST_CASE("Ends with") {
13081308
REQUIRE(!lz::ends_with(iterable, iterable2));
13091309
}
13101310

1311-
SECTION("Bidirectional") {
1311+
SECTION("Bidirectional sized") {
13121312
std::list<char> lst;
13131313
std::list<char> lst2;
13141314
REQUIRE(lz::ends_with(lst, lst2));

0 commit comments

Comments
 (0)