From 8e61986c13fb78ad85fda56f449ea9f305e5bdf5 Mon Sep 17 00:00:00 2001 From: Emily Dolson Date: Thu, 29 Feb 2024 13:48:07 -0500 Subject: [PATCH] Discard changes to tests/tools/string_utils.cpp --- tests/tools/string_utils.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/tools/string_utils.cpp b/tests/tools/string_utils.cpp index 161ee4b718..96a9ffb0e2 100644 --- a/tests/tools/string_utils.cpp +++ b/tests/tools/string_utils.cpp @@ -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.", @@ -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.", @@ -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');