diff options
author | chris.clst <christophe.claustre.31@gmail.com> | 2021-11-14 03:23:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 03:23:22 +0100 |
commit | 038be68649ca60d4a2ffb3c05bdd3cc8ec4841f4 (patch) | |
tree | 29dfaacbcab32b7915743a5959f57b05d7816c31 /tests/core/string/test_string.h | |
parent | cc39ba5509263346f33894be3a2c84580c1168a9 (diff) | |
parent | ed300d7be536b1ec325ba77521eceee73dd0e5fb (diff) |
Merge branch 'godotengine:master' into bugfix_shader_compile_spirv_from_source
Diffstat (limited to 'tests/core/string/test_string.h')
-rw-r--r-- | tests/core/string/test_string.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/core/string/test_string.h b/tests/core/string/test_string.h index e5b26cf5a4..00a9a8779a 100644 --- a/tests/core/string/test_string.h +++ b/tests/core/string/test_string.h @@ -490,12 +490,6 @@ TEST_CASE("[String] Splitting") { } } -TEST_CASE("[String] Erasing") { - String s = "Josephine is such a cute girl!"; - s.erase(s.find("cute "), String("cute ").length()); - CHECK(s == "Josephine is such a girl!"); -} - struct test_27_data { char const *data; char const *part; |