summaryrefslogtreecommitdiffstats
path: root/tests/core/io/test_json.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/io/test_json.h')
-rw-r--r--tests/core/io/test_json.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/core/io/test_json.h b/tests/core/io/test_json.h
index bf2ed42740..6934e4d211 100644
--- a/tests/core/io/test_json.h
+++ b/tests/core/io/test_json.h
@@ -2,9 +2,11 @@
/* test_json.h */
/**************************************************************************/
/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
+/* REDOT ENGINE */
+/* https://redotengine.org */
/**************************************************************************/
+/* Copyright (c) 2024-present Redot Engine contributors */
+/* (see REDOT_AUTHORS.md) */
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
@@ -127,11 +129,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"],