Fix test failure caused by previous commit

See gh-35675
This commit is contained in:
rstoyanchev
2025-10-24 13:18:40 +01:00
parent a982c9b481
commit f0a61cc9c6
@@ -52,7 +52,7 @@ class ArrayConstructorTests extends AbstractExpressionTests {
evaluateArrayBuildingExpression("new short[]{2,3,4,5,6}", "{2, 3, 4, 5, 6}");
evaluateArrayBuildingExpression("new double[]{1d,2d,3d,4d}", "{1.0, 2.0, 3.0, 4.0}");
evaluateArrayBuildingExpression("new float[]{1f,2f,3f,4f}", "{1.0, 2.0, 3.0, 4.0}");
evaluateArrayBuildingExpression("new byte[]{1,2,3,4}", "{1, 2, 3, 4}");
evaluateArrayBuildingExpression("new byte[]{1,2,3,4}", "{01020304}");
evaluate("new int[]{}.length", "0", Integer.class);
}