diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-11-14 17:15:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 17:15:02 +0100 |
commit | 963ffd8b944db768a9b7d09eeec025907f50843c (patch) | |
tree | 595725ff6a0f9d6d939eefadee633fd55228821f /modules/gdscript/tests/gdscript_test_runner.cpp | |
parent | 30145a9ef730469985bd69f9a79be030aa8cc01f (diff) | |
parent | bce6f1792ebce5de31700e72f57830e5d87b419a (diff) |
Merge pull request #68374 from rune-scape/rune-gdscript-compiler-bugfixes
Fixes https://github.com/godotengine/godot/issues/65953
Fixes https://github.com/godotengine/godot/issues/68291
Fixes https://github.com/godotengine/godot/issues/68561
Fixes https://github.com/godotengine/godot/issues/64915
Fixes https://github.com/godotengine/godot/issues/61848
Fixes https://github.com/godotengine/godot/issues/61268
Diffstat (limited to 'modules/gdscript/tests/gdscript_test_runner.cpp')
-rw-r--r-- | modules/gdscript/tests/gdscript_test_runner.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/tests/gdscript_test_runner.cpp b/modules/gdscript/tests/gdscript_test_runner.cpp index 15131afde7..1ccbf9d150 100644 --- a/modules/gdscript/tests/gdscript_test_runner.cpp +++ b/modules/gdscript/tests/gdscript_test_runner.cpp @@ -461,7 +461,6 @@ GDScriptTest::TestResult GDScriptTest::execute_test_code(bool p_is_generating) { Ref<GDScript> script; script.instantiate(); script->set_path(source_file); - script->set_script_path(source_file); err = script->load_source_code(source_file); if (err != OK) { enable_stdout(); |