From a628a195048107e3d9c280891e5faaa63e9198f6 Mon Sep 17 00:00:00 2001 From: dev-chpark Date: Sun, 18 Aug 2024 15:15:13 +0900 Subject: [PATCH] Rename test method to clarify its purpose --- .../src/test/java/org/springframework/beans/BeanUtilsTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-beans/src/test/java/org/springframework/beans/BeanUtilsTests.java b/spring-beans/src/test/java/org/springframework/beans/BeanUtilsTests.java index 09edd5cf1a63..42e9221bd648 100644 --- a/spring-beans/src/test/java/org/springframework/beans/BeanUtilsTests.java +++ b/spring-beans/src/test/java/org/springframework/beans/BeanUtilsTests.java @@ -475,7 +475,7 @@ void resolveSignatureWithArray() throws Exception { } @Test - void spr6063() { + void propertyDescriptorShouldMatchWithCachedDescriptors() { PropertyDescriptor[] descrs = BeanUtils.getPropertyDescriptors(Bean.class); PropertyDescriptor keyDescr = BeanUtils.getPropertyDescriptor(Bean.class, "value");