mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-21 13:31:46 +00:00
Fix test failure caused by previous commit
See gh-35675
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user