summaryrefslogtreecommitdiffstats
path: root/tests/core/variant/test_dictionary.h
diff options
context:
space:
mode:
authorrune-scape <allie.smith.epic@gmail.com>2023-12-28 14:44:23 -0800
committerrune-scape <spartacrafter@gmail.com>2024-08-29 13:39:27 -0700
commit154049ce1792a6e12b990e0a414a6c084c3b91c5 (patch)
tree102bda57c74f9efaa227c970255327f734043ce9 /tests/core/variant/test_dictionary.h
parent40b378e9e2338d84f897f6991cc913a713295785 (diff)
downloadredot-engine-154049ce1792a6e12b990e0a414a6c084c3b91c5.tar.gz
StringName Dictionary keys
also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
Diffstat (limited to 'tests/core/variant/test_dictionary.h')
-rw-r--r--tests/core/variant/test_dictionary.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/core/variant/test_dictionary.h b/tests/core/variant/test_dictionary.h
index aba20972d9..7061bc66dc 100644
--- a/tests/core/variant/test_dictionary.h
+++ b/tests/core/variant/test_dictionary.h
@@ -66,8 +66,7 @@ TEST_CASE("[Dictionary] Assignment using bracket notation ([])") {
map[StringName("HelloName")] = 6;
CHECK(int(map[StringName("HelloName")]) == 6);
- // Check that StringName key is converted to String.
- CHECK(int(map.find_key(6).get_type()) == Variant::STRING);
+ CHECK(int(map.find_key(6).get_type()) == Variant::STRING_NAME);
map[StringName("HelloName")] = 7;
CHECK(int(map[StringName("HelloName")]) == 7);