Skip to content

Commit d26a570

Browse files
committed
Polishing
1 parent ac3c670 commit d26a570

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-beans/src/test/java/org/springframework/beans/BeanWrapperTests.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
import static org.hamcrest.Matchers.*;
6161
import static org.junit.Assert.*;
6262

63-
6463
/**
6564
* @author Rod Johnson
6665
* @author Juergen Hoeller
@@ -1561,11 +1560,11 @@ public void testArrayToObject() {
15611560
BeanWrapperImpl bwi = new BeanWrapperImpl(foo);
15621561

15631562
Object[] array = new Object[] {"1","2"};
1564-
bwi.setPropertyValue("object", array );
1563+
bwi.setPropertyValue("object", array);
15651564
assertThat(foo.getObject(), equalTo((Object) array));
15661565

15671566
array = new Object[] {"1"};
1568-
bwi.setPropertyValue("object", array );
1567+
bwi.setPropertyValue("object", array);
15691568
assertThat(foo.getObject(), equalTo((Object) array));
15701569
}
15711570

0 commit comments

Comments
 (0)