diff options
Diffstat (limited to 'tests/core/os/test_os.h')
-rw-r--r-- | tests/core/os/test_os.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/os/test_os.h b/tests/core/os/test_os.h index 1e2f5e222b..7a2151e044 100644 --- a/tests/core/os/test_os.h +++ b/tests/core/os/test_os.h @@ -182,7 +182,7 @@ TEST_CASE("[OS] Execute") { const Error err = OS::get_singleton()->execute("cmd", arguments, nullptr, &exit_code); CHECK_MESSAGE( err == OK, - "(Running the command `cmd /C \"dir > NUL\"` returns the expected Godot error code (OK)."); + "(Running the command `cmd /C \"dir > NUL\"` returns the expected Redot error code (OK)."); CHECK_MESSAGE( exit_code == 0, "Running the command `cmd /C \"dir > NUL\"` returns a zero (successful) exit code."); @@ -194,7 +194,7 @@ TEST_CASE("[OS] Execute") { const Error err = OS::get_singleton()->execute("sh", arguments, nullptr, &exit_code); CHECK_MESSAGE( err == OK, - "(Running the command `sh -c \"ls > /dev/null\"` returns the expected Godot error code (OK)."); + "(Running the command `sh -c \"ls > /dev/null\"` returns the expected Redot error code (OK)."); CHECK_MESSAGE( exit_code == 0, "Running the command `sh -c \"ls > /dev/null\"` returns a zero (successful) exit code."); |