summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2020-11-23 14:47:11 +0300
committerYuri Roubinsky <chaosus89@gmail.com>2021-01-26 20:36:12 +0300
commit38a5d22079832955c4f6aba50441fff8f6bcfa55 (patch)
treeb5fb355e0a3b45b7b56a11b708ed8b1122c2b987 /tests
parentfa498f6105bb18a038210f4c000e1a97b7c86354 (diff)
Renamed String.ord_at to unicode_at
Diffstat (limited to 'tests')
-rw-r--r--tests/test_string.h2
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") {