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
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/kotlin/org/springframework/data/mongodb/core/query/TypedCriteriaExtensionsTests.kt
+3-2
Original file line number
Diff line number
Diff line change
@@ -219,8 +219,9 @@ class TypedCriteriaExtensionsTests {
219
219
@Test
220
220
fun`not() should equal classic criteria`() {
221
221
222
-
val typed =Book::title.not()
223
-
val classic =Criteria("title").not()
222
+
// TODO: improve not() syntax
223
+
val typed =Book::title.not().isEqualTo("Moby-Dick")
224
+
val classic =Criteria("title").not().isEqualTo("Moby-Dick")
0 commit comments