File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
spring-beans/src/test/java/org/springframework/beans Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 60
60
import static org .hamcrest .Matchers .*;
61
61
import static org .junit .Assert .*;
62
62
63
-
64
63
/**
65
64
* @author Rod Johnson
66
65
* @author Juergen Hoeller
@@ -1561,11 +1560,11 @@ public void testArrayToObject() {
1561
1560
BeanWrapperImpl bwi = new BeanWrapperImpl (foo );
1562
1561
1563
1562
Object [] array = new Object [] {"1" ,"2" };
1564
- bwi .setPropertyValue ("object" , array );
1563
+ bwi .setPropertyValue ("object" , array );
1565
1564
assertThat (foo .getObject (), equalTo ((Object ) array ));
1566
1565
1567
1566
array = new Object [] {"1" };
1568
- bwi .setPropertyValue ("object" , array );
1567
+ bwi .setPropertyValue ("object" , array );
1569
1568
assertThat (foo .getObject (), equalTo ((Object ) array ));
1570
1569
}
1571
1570
You can’t perform that action at this time.
0 commit comments