diff options
author | Trashguy <trashguy@gmail.com> | 2024-10-11 12:21:42 -0400 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-13 15:05:24 -0400 |
commit | 9901f655fb46bd345770ad5f4a1638c4051b1816 (patch) | |
tree | bb22b4881145f122568c8f2e51e912078ad1b4fc /tests/test_main.cpp | |
parent | 6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff) | |
download | redot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz |
Rebrand Godot 4.3 to Redot
Diffstat (limited to 'tests/test_main.cpp')
-rw-r--r-- | tests/test_main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_main.cpp b/tests/test_main.cpp index edadc52a16..17212935fe 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -173,7 +173,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++) { @@ -212,10 +212,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. @@ -446,4 +446,4 @@ private: } }; -REGISTER_LISTENER("GodotTestCaseListener", 1, GodotTestCaseListener); +REGISTER_LISTENER("RedotTestCaseListener", 1, GodotTestCaseListener); |