From ac3c578e9390d974546e46f6b1f41fd9d9c36fad Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 26 Nov 2020 11:44:58 +0100 Subject: [PATCH] DATAMONGO-2661 - Polishing. Add ticket reference. Original pull request: #894. --- .../data/mongodb/core/query/KPropertyPathTests.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/query/KPropertyPathTests.kt b/spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/query/KPropertyPathTests.kt index 48e75febb..9f2ee0f99 100644 --- a/spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/query/KPropertyPathTests.kt +++ b/spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/query/KPropertyPathTests.kt @@ -20,6 +20,7 @@ import org.junit.Test /** * @author Tjeu Kayim + * @author Yoann de Martino */ class KPropertyPathTests { @@ -60,7 +61,7 @@ class KPropertyPathTests { assertThat(property).isEqualTo("entity.book.author.name") } - @Test + @Test // DATAMONGO-2661 fun `Convert nullable KProperty to field name`() { class Cat(val name: String) class Owner(val cat: Cat?)