Skip to content

Commit

Permalink
Discard changes to tests/tools/string_utils.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
emilydolson authored Feb 29, 2024
1 parent 9bbc8f8 commit 8e61986
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/tools/string_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ TEST_CASE("Another Test string_utils", "[tools]")
);
CHECK(slices.size() == 1);
CHECK(slices[0] == "This is a test.");
// CHECK(slices[0] == "This");

slices = emp::slice(
"This is a test.",
Expand All @@ -399,7 +398,6 @@ TEST_CASE("Another Test string_utils", "[tools]")
CHECK(slices.size() == 2);
CHECK(slices[0] == "This");
CHECK(slices[1] == "is a test.");
// CHECK(slices[1] == "is");

slices = emp::slice(
"This is a test.",
Expand All @@ -410,7 +408,6 @@ TEST_CASE("Another Test string_utils", "[tools]")
CHECK(slices[0] == "This");
CHECK(slices[1] == "is");
CHECK(slices[2] == "a test.");
// CHECK(slices[2] == "a");

// Try other ways of using slice().
emp::slice(base_string, slices, 's');
Expand Down

0 comments on commit 8e61986

Please sign in to comment.