diff options
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); |