diff options
Diffstat (limited to 'tests/test_main.cpp')
-rw-r--r-- | tests/test_main.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/test_main.cpp b/tests/test_main.cpp index 9acdc98b1d..e86f17cef5 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -2,9 +2,11 @@ /* test_main.cpp */ /**************************************************************************/ /* 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. */ /* */ @@ -196,7 +198,7 @@ int test_main(int argc, char *argv[]) { bool run_tests = true; - // Convert arguments to Godot's command-line. + // Convert arguments to Redot's command-line. List<String> args; for (int i = 0; i < argc; i++) { @@ -235,10 +237,10 @@ int test_main(int argc, char *argv[]) { } if (test_args.size() > 0) { - // Convert Godot command line arguments back to standard arguments. + // Convert Redot command line arguments back to standard arguments. char **doctest_args = new char *[test_args.size()]; for (uint32_t x = 0; x < test_args.size(); x++) { - // Operation to convert Godot string to non wchar string. + // Operation to convert Redot string to non wchar string. CharString cs = test_args[x].utf8(); const char *str = cs.get_data(); // Allocate the string copy. @@ -475,4 +477,4 @@ private: } }; -REGISTER_LISTENER("GodotTestCaseListener", 1, GodotTestCaseListener); +REGISTER_LISTENER("RedotTestCaseListener", 1, GodotTestCaseListener); |