Browse Source

Fix typo in ReflectionUtilsTests

Closes gh-24344
pull/24356/head
Qimiao Chen 6 years ago committed by Sam Brannen
parent
commit
c84dd55863
  1. 2
      spring-core/src/test/java/org/springframework/util/ReflectionUtilsTests.java

2
spring-core/src/test/java/org/springframework/util/ReflectionUtilsTests.java

@ -362,7 +362,7 @@ class ReflectionUtilsTests { @@ -362,7 +362,7 @@ class ReflectionUtilsTests {
}
@Test
void getDecalredMethodsReturnsCopy() {
void getDeclaredMethodsReturnsCopy() {
Method[] m1 = ReflectionUtils.getDeclaredMethods(A.class);
Method[] m2 = ReflectionUtils.getDeclaredMethods(A.class);
assertThat(m1). isNotSameAs(m2);

Loading…
Cancel
Save