You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use ReflectionUtils.isVoid(…) to whether Kotlin coroutines should return a value.
We now use a different utility method that is aware of whether a return type maps to Kotlin's Unit to indicate a void return type.
Previously, we only checked for Java's void types.
Closes#4772
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/repository/KotlinRepositoryUnitTests.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ class KotlinRepositoryUnitTests {
45
45
}
46
46
47
47
@Test // DATAMONGO-2601
48
-
funshould() {
48
+
funshouldSupportDeleteMethods() {
49
49
50
50
val repository = repositoryFactory.getRepository(PersonRepository::class.java)
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/repository/query/ReactiveMongoQueryMethodCoroutineUnitTests.kt
0 commit comments