diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-27 19:42:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 19:42:31 +0100 |
commit | 964c14580c322cdbd529d03896de5cd8be4c8c2f (patch) | |
tree | 0b9b143f022efe7e31a184d0a14d804ca58c9680 /tests/test_string.h | |
parent | 1f3d52eed7e2fb66d4f786eb5af9e54a38f429db (diff) | |
parent | 38a5d22079832955c4f6aba50441fff8f6bcfa55 (diff) |
Merge pull request #43790 from Chaosus/rename_ord_at
Renamed String.ord_at to unicode_at
Diffstat (limited to 'tests/test_string.h')
-rw-r--r-- | tests/test_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_string.h b/tests/test_string.h index 17a2df190d..1fb6de5299 100644 --- a/tests/test_string.h +++ b/tests/test_string.h @@ -266,7 +266,7 @@ TEST_CASE("[String] Operator []") { a[6] = 'C'; CHECK(a == "Sugar Cane"); CHECK(a[1] == 'u'); - CHECK(a.ord_at(1) == 'u'); + CHECK(a.unicode_at(1) == 'u'); } TEST_CASE("[String] Case function test") { |