File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ func _ready():
26
26
var rust_runner = IntegrationTests .new ()
27
27
28
28
var gdscript_suites : Array = [
29
- preload ("res://ManualFfiTests.gd" ).new (),
30
- preload ("res://gen/GenFfiTests.gd" ).new (),
31
- preload ("res://InheritTests.gd" ).new ()
29
+ load ("res://ManualFfiTests.gd" ).new (),
30
+ load ("res://gen/GenFfiTests.gd" ).new (),
31
+ load ("res://InheritTests.gd" ).new ()
32
32
]
33
33
34
34
var gdscript_tests : Array = []
@@ -39,7 +39,7 @@ func _ready():
39
39
gdscript_tests .push_back (GDScriptExecutableTestCase .new (suite , method_name ))
40
40
41
41
var special_case_test_suites : Array = [
42
- preload ("res://SpecialTests.gd" ).new (),
42
+ load ("res://SpecialTests.gd" ).new (),
43
43
]
44
44
45
45
for suite in special_case_test_suites :
You can’t perform that action at this time.
0 commit comments