diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2021-04-16 22:16:19 +0300 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2021-04-16 22:16:19 +0300 |
commit | 1e26bf23c22b2e425be3ee1b00326a0af129337f (patch) | |
tree | 22fa02e58c8d8e9e7aae6ce2841f552c3a6f3c3f /modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd | |
parent | 49511d439124ab5a71defd22639737f45bd0ff70 (diff) | |
download | redot-engine-1e26bf23c22b2e425be3ee1b00326a0af129337f.tar.gz |
Rename GDScript test script filenames to use `snake_case`
Diffstat (limited to 'modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd b/modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd deleted file mode 100644 index 6097b11b10..0000000000 --- a/modules/gdscript/tests/scripts/parser-features/trailing-comma-in-function-args.gd +++ /dev/null @@ -1,7 +0,0 @@ -# See https://github.com/godotengine/godot/issues/41066. - -func f(p, ): ## <-- no errors - print(p) - -func test(): - f(0, ) ## <-- no error |