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 e7f67cf commit 8dab82bCopy full SHA for 8dab82b
datastore/src/test/java/io/spine/server/storage/datastore/TransactionWrapperTest.java
@@ -294,7 +294,7 @@ void lookup() {
294
);
295
try (TransactionWrapper tx = datastore.newTransaction()) {
296
List<Entity> readEntities = tx.lookup(keys);
297
- tx.close();
+ tx.commit();
298
assertThat(readEntities)
299
.containsExactly(firstEntity, null, secondEntity);
300
}
@@ -318,7 +318,7 @@ void lookupBulk() {
318
.collect(toList());
319
320
321
322
323
.containsExactlyElementsIn(entities);
324
0 commit comments