From 9cb2da89d6a763b497f87ff92bdbe8a7cc0258a8 Mon Sep 17 00:00:00 2001 From: Dmitrii Maganov Date: Mon, 13 Feb 2023 22:02:52 +0200 Subject: GDScript: Fix usage of ints with typed array of floats --- modules/gdscript/tests/scripts/analyzer/features/typed_array_usage.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/gdscript/tests') diff --git a/modules/gdscript/tests/scripts/analyzer/features/typed_array_usage.gd b/modules/gdscript/tests/scripts/analyzer/features/typed_array_usage.gd index 092ae49d00..7416ecd87a 100644 --- a/modules/gdscript/tests/scripts/analyzer/features/typed_array_usage.gd +++ b/modules/gdscript/tests/scripts/analyzer/features/typed_array_usage.gd @@ -86,7 +86,8 @@ func test(): var typed_int := 556 var converted_floats: Array[float] = [typed_int] - assert(str(converted_floats) == '[556]') + converted_floats.push_back(498) + assert(str(converted_floats) == '[556, 498]') assert(converted_floats.get_typed_builtin() == TYPE_FLOAT) -- cgit v1.2.3