We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a7280 commit 35e6a1cCopy full SHA for 35e6a1c
1 file changed
src/it/java/io/weaviate/integration/ORMITest.java
@@ -225,8 +225,10 @@ public void test_insertAndQuery() throws Exception {
225
var inserted = things.data.insert(thing);
226
227
// Assert
228
- var got = things.query.byId(inserted.uuid());
229
- Assertions.assertThat(got).get()
+ var response = things.query.byId(inserted.uuid());
+ var got = Assertions.assertThat(response).get().actual();
230
+
231
+ Assertions.assertThat(got.properties())
232
.usingRecursiveComparison(COMPARISON_CONFIG)
233
.isEqualTo(thing);
234
}
0 commit comments