Polishing.

Remove sysout from tests.

See #4491
This commit is contained in:
Mark Paluch
2023-09-01 12:20:30 +02:00
parent 4d82856c04
commit a9b2b8b198

View File

@@ -353,7 +353,7 @@ public abstract class AbstractEncryptionTestBase {
template.save(p3);
template.execute(Person.class, collection -> {
collection.find(new Document()).forEach(it -> System.out.println(it.toJson()));
collection.find(new Document());
return null;
});