diff --git a/modules/gdscript/tests/scripts/analyzer/errors/enum_builtin_access.out b/modules/gdscript/tests/scripts/analyzer/errors/enum_builtin_access.out index 9c476031f36a..ba13d5429e73 100644 --- a/modules/gdscript/tests/scripts/analyzer/errors/enum_builtin_access.out +++ b/modules/gdscript/tests/scripts/analyzer/errors/enum_builtin_access.out @@ -1,2 +1,2 @@ GDTEST_ANALYZER_ERROR -Type "Axis" in base "Vector3" cannot be used on its own. +>> ERROR at line 2: Type "Axis" in base "Vector3" cannot be used on its own. diff --git a/modules/gdscript/tests/scripts/analyzer/errors/enum_global_access.out b/modules/gdscript/tests/scripts/analyzer/errors/enum_global_access.out index 191acade730e..a7b9c205ad54 100644 --- a/modules/gdscript/tests/scripts/analyzer/errors/enum_global_access.out +++ b/modules/gdscript/tests/scripts/analyzer/errors/enum_global_access.out @@ -1,2 +1,2 @@ GDTEST_ANALYZER_ERROR -Type "Operator" in base "Variant" cannot be used on its own. +>> ERROR at line 2: Type "Operator" in base "Variant" cannot be used on its own. diff --git a/modules/gdscript/tests/scripts/analyzer/errors/enum_native_access.out b/modules/gdscript/tests/scripts/analyzer/errors/enum_native_access.out index 83671fc493ae..43e650e4c646 100644 --- a/modules/gdscript/tests/scripts/analyzer/errors/enum_native_access.out +++ b/modules/gdscript/tests/scripts/analyzer/errors/enum_native_access.out @@ -1,2 +1,2 @@ GDTEST_ANALYZER_ERROR -Type "ProcessMode" in base "Node" cannot be used on its own. +>> ERROR at line 2: Type "ProcessMode" in base "Node" cannot be used on its own. diff --git a/modules/gdscript/tests/scripts/runtime/errors/division_by_zero.out b/modules/gdscript/tests/scripts/runtime/errors/division_by_zero.out index 6a9d11cd772c..1175f0497d84 100644 --- a/modules/gdscript/tests/scripts/runtime/errors/division_by_zero.out +++ b/modules/gdscript/tests/scripts/runtime/errors/division_by_zero.out @@ -1,6 +1,3 @@ GDTEST_RUNTIME_ERROR ->> SCRIPT ERROR ->> on function: test() ->> runtime/errors/division_by_zero.gd ->> 3 ->> Division by zero error in operator '/'. +~~ WARNING at line 2: (UNUSED_VARIABLE) The local variable "integer" is declared but never used in the block. If this is intended, prefix it with an underscore: "_integer". +>> SCRIPT ERROR at runtime/errors/division_by_zero.gd:3 on test(): Division by zero error in operator '/'. diff --git a/modules/gdscript/tests/scripts/runtime/errors/modulo_by_zero.out b/modules/gdscript/tests/scripts/runtime/errors/modulo_by_zero.out index 79c512888f41..6711735799a7 100644 --- a/modules/gdscript/tests/scripts/runtime/errors/modulo_by_zero.out +++ b/modules/gdscript/tests/scripts/runtime/errors/modulo_by_zero.out @@ -1,6 +1,3 @@ GDTEST_RUNTIME_ERROR ->> SCRIPT ERROR ->> on function: test() ->> runtime/errors/modulo_by_zero.gd ->> 3 ->> Modulo by zero error in operator '%'. +~~ WARNING at line 2: (UNUSED_VARIABLE) The local variable "integer" is declared but never used in the block. If this is intended, prefix it with an underscore: "_integer". +>> SCRIPT ERROR at runtime/errors/modulo_by_zero.gd:3 on test(): Modulo by zero error in operator '%'.