GDScriptTestRunner: Fix compiler error output

This commit is contained in:
rune-scape 2024-07-23 12:58:58 -07:00 committed by rune-scape
parent 8e36f98ea5
commit 298904d74e
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ GDScriptTest::TestResult GDScriptTest::execute_test_code(bool p_is_generating) {
enable_stdout();
result.status = GDTEST_COMPILER_ERROR;
result.output = get_text_for_status(result.status) + "\n";
result.output = compiler.get_error();
result.output += compiler.get_error() + "\n";
if (!p_is_generating) {
result.passed = check_output(result.output);
}