From 1e61e422509f0991a24fc4bb4ed4563e627e5ea8 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Sat, 2 Mar 2024 19:49:32 +0100 Subject: [GDScript] Fix some test file paths --- .../gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.gd | 2 -- .../tests/scripts/parser/errors/dollar-assignment-bug-53696.out | 2 -- .../gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.gd | 2 ++ .../tests/scripts/parser/errors/dollar_assignment_bug_53696.out | 2 ++ 4 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.gd delete mode 100644 modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.out create mode 100644 modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.gd create mode 100644 modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.out (limited to 'modules/gdscript/tests/scripts/parser/errors') diff --git a/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.gd b/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.gd deleted file mode 100644 index e9690ee93d..0000000000 --- a/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.gd +++ /dev/null @@ -1,2 +0,0 @@ -func test(): - $=$ diff --git a/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.out b/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.out deleted file mode 100644 index 9fafcb5a64..0000000000 --- a/modules/gdscript/tests/scripts/parser/errors/dollar-assignment-bug-53696.out +++ /dev/null @@ -1,2 +0,0 @@ -GDTEST_PARSER_ERROR -Expected node path as string or identifier after "$". diff --git a/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.gd b/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.gd new file mode 100644 index 0000000000..e9690ee93d --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.gd @@ -0,0 +1,2 @@ +func test(): + $=$ diff --git a/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.out b/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.out new file mode 100644 index 0000000000..9fafcb5a64 --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/dollar_assignment_bug_53696.out @@ -0,0 +1,2 @@ +GDTEST_PARSER_ERROR +Expected node path as string or identifier after "$". -- cgit v1.2.3