diff options
author | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2022-01-26 18:03:56 -0500 |
---|---|---|
committer | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2022-01-26 18:03:56 -0500 |
commit | 3eb5e0ac509def467d53df7a729e76743e235e90 (patch) | |
tree | 574bdf4345060ed28db7816a02edb2385910beed /tests | |
parent | fc09d783f4e8a6b8978c6971450f26e812268e67 (diff) |
Rename String::is_subsequence_ofi to String::is_subsequence_ofn
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/string/test_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/string/test_string.h b/tests/core/string/test_string.h index baab5ddfe7..e03a71bcb8 100644 --- a/tests/core/string/test_string.h +++ b/tests/core/string/test_string.h @@ -877,7 +877,7 @@ TEST_CASE("[String] is_subsequence_of") { String a = "is subsequence of"; CHECK(String("sub").is_subsequence_of(a)); CHECK(!String("Sub").is_subsequence_of(a)); - CHECK(String("Sub").is_subsequence_ofi(a)); + CHECK(String("Sub").is_subsequence_ofn(a)); } TEST_CASE("[String] match") { |