From 1e26bf23c22b2e425be3ee1b00326a0af129337f Mon Sep 17 00:00:00 2001 From: "Andrii Doroshenko (Xrayez)" Date: Fri, 16 Apr 2021 22:16:19 +0300 Subject: Rename GDScript test script filenames to use `snake_case` --- .../tests/scripts/parser-features/variable-declaration.gd | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 modules/gdscript/tests/scripts/parser-features/variable-declaration.gd (limited to 'modules/gdscript/tests/scripts/parser-features/variable-declaration.gd') diff --git a/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd b/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd deleted file mode 100644 index 3b48f10ca7..0000000000 --- a/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd +++ /dev/null @@ -1,12 +0,0 @@ -var a # No init. -var b = 42 # Init. - -func test(): - var c # No init, local. - var d = 23 # Init, local. - - a = 1 - c = 2 - - prints(a, b, c, d) - print("OK") -- cgit v1.2.3