From 1f23498041bece92f49c273681d239b8f8eb973a Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 2 Dec 2024 09:09:46 +0100 Subject: [PATCH] Polishing. Fix ticket reference. See #3215 --- .../projection/PropertyAccessingMethodInterceptorUnitTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java b/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java index ddd71cc57e..999ec03343 100755 --- a/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java +++ b/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java @@ -121,7 +121,7 @@ void detectsKotlinPropertiesWithLeadingIsOnTargetType() throws Throwable { assertThat(new PropertyAccessingMethodInterceptor(source).invoke(invocation)).isEqualTo(true); } - @Test // GH-3697 + @Test // GH-3215 void considersPropertyDescriptorsFromPackageProtectedSuperclass() throws Throwable { var source = new SomeExposedClass();