diff options
Diffstat (limited to 'tests/core/io/test_json.h')
-rw-r--r-- | tests/core/io/test_json.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/io/test_json.h b/tests/core/io/test_json.h index bf2ed42740..ee1f2ad845 100644 --- a/tests/core/io/test_json.h +++ b/tests/core/io/test_json.h @@ -127,11 +127,11 @@ TEST_CASE("[JSON] Parsing arrays") { TEST_CASE("[JSON] Parsing objects (dictionaries)") { JSON json; - json.parse(R"({"name": "Godot Engine", "is_free": true, "bugs": null, "apples": {"red": 500, "green": 0, "blue": -20}, "empty_object": {}})"); + json.parse(R"({"name": "Redot Engine", "is_free": true, "bugs": null, "apples": {"red": 500, "green": 0, "blue": -20}, "empty_object": {}})"); const Dictionary dictionary = json.get_data(); CHECK_MESSAGE( - dictionary["name"] == "Godot Engine", + dictionary["name"] == "Redot Engine", "The parsed JSON should contain the expected values."); CHECK_MESSAGE( dictionary["is_free"], |