From 65401bf4c3c0759fe1a892e40bd98e12ebc8695a 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 | 2 +- 1 file changed, 1 insertion(+), 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 985064183..c52c1c8c8 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 @@ -93,7 +93,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?)