summaryrefslogtreecommitdiffstats
path: root/modules/regex/tests
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-08-05 03:41:48 +0200
committerkobewi <kobewi4e@gmail.com>2022-08-22 22:42:36 +0200
commit8be27dc59e3e330e10079ba8cbc999c80cab0ddc (patch)
tree17ef499a4e116aea2ede5e0f89ed2b15ec8dbc94 /modules/regex/tests
parentb9ea0e1338b1364fc6ecfd5731d038c32170e660 (diff)
downloadredot-engine-8be27dc59e3e330e10079ba8cbc999c80cab0ddc.tar.gz
Replace Array return types with TypedArray
Diffstat (limited to 'modules/regex/tests')
-rw-r--r--modules/regex/tests/test_regex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex/tests/test_regex.h b/modules/regex/tests/test_regex.h
index 91af393db1..c81094d3ae 100644
--- a/modules/regex/tests/test_regex.h
+++ b/modules/regex/tests/test_regex.h
@@ -46,7 +46,7 @@ TEST_CASE("[RegEx] Initialization") {
CHECK(re1.get_pattern() == pattern);
CHECK(re1.get_group_count() == 1);
- Array names = re1.get_names();
+ PackedStringArray names = re1.get_names();
CHECK(names.size() == 1);
CHECK(names[0] == "vowel");