diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-06-20 12:03:54 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-06-20 12:03:54 +0300 |
commit | a0577eb23b303b2f60a9237c877bd2ca370a6cc2 (patch) | |
tree | eb732401af79edad284e092e7470e366d0fdb598 /modules/gdscript/tests/scripts/runtime/errors | |
parent | 73ac33342fa8326e533604f43494844483dcca3d (diff) | |
download | redot-engine-a0577eb23b303b2f60a9237c877bd2ca370a6cc2.tar.gz |
GDScript: Fix `_get_script_name()` function collision for SCU build
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/errors')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_basic_to_typed.out | 2 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_differently_to_typed.out | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_basic_to_typed.out b/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_basic_to_typed.out index 6f210e944e..810fe64823 100644 --- a/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_basic_to_typed.out +++ b/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_basic_to_typed.out @@ -3,4 +3,4 @@ GDTEST_RUNTIME_ERROR >> on function: test() >> runtime/errors/typed_array_pass_basic_to_typed.gd >> 6 ->> Invalid type in function 'expect_typed' in base 'RefCounted ()'. The array of argument 1 (Array) does not have the same element type as the expected typed array argument. +>> Invalid type in function 'expect_typed' in base 'RefCounted (typed_array_pass_basic_to_typed.gd)'. The array of argument 1 (Array) does not have the same element type as the expected typed array argument. diff --git a/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_differently_to_typed.out b/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_differently_to_typed.out index 3cd4e25bd8..f1b3612a4a 100644 --- a/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_differently_to_typed.out +++ b/modules/gdscript/tests/scripts/runtime/errors/typed_array_pass_differently_to_typed.out @@ -3,4 +3,4 @@ GDTEST_RUNTIME_ERROR >> on function: test() >> runtime/errors/typed_array_pass_differently_to_typed.gd >> 6 ->> Invalid type in function 'expect_typed' in base 'RefCounted ()'. The array of argument 1 (Array[float]) does not have the same element type as the expected typed array argument. +>> Invalid type in function 'expect_typed' in base 'RefCounted (typed_array_pass_differently_to_typed.gd)'. The array of argument 1 (Array[float]) does not have the same element type as the expected typed array argument. |