From 471a4ce18336448c6765312232e4dceee6791761 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 25 Jun 2021 10:00:31 +0200 Subject: [PATCH] Improve comment, better println --- .../jooq/example/test/containers/TestContainersTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jOOQ-examples/jOOQ-testcontainers-example/src/test/java/org/jooq/example/test/containers/TestContainersTest.java b/jOOQ-examples/jOOQ-testcontainers-example/src/test/java/org/jooq/example/test/containers/TestContainersTest.java index ab6c19bf6f..ebe14b94de 100644 --- a/jOOQ-examples/jOOQ-testcontainers-example/src/test/java/org/jooq/example/test/containers/TestContainersTest.java +++ b/jOOQ-examples/jOOQ-testcontainers-example/src/test/java/org/jooq/example/test/containers/TestContainersTest.java @@ -83,14 +83,14 @@ public class TestContainersTest { .limit(5)) .fetch(); - result.forEach(System.out::println); + System.out.println(result); } @Test public void testMultisetFormattingAsXMLorJSON() { - // Get films by title, and their actors and categories as nested collections - // all the customers that have rented the film + // Get films by title, and their actors and categories as nested collections, + // and all the customers that have rented the film, and their payments var result = println(ctx .select( FILM.TITLE,