Polishing.

Remove sysout from tests.

See #4491
This commit is contained in:
Mark Paluch
2023-09-01 12:20:30 +02:00
committed by Christoph Strobl
parent 69c9e0f482
commit 53760b07bc

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;
});