Skip to content

Commit 655cfaa

Browse files
authored
MINOR: remove System.out in test (#20494)
This PR removes two System.out.println(...) statements from StreamsGraphTest. These outputs were left over from debugging and are not needed in the test logic. Reviewers: Ken Huang <[email protected]>, TengYao Chi <[email protected]>, Chia-Ping Tsai <[email protected]>
1 parent 52dfe1e commit 655cfaa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

streams/src/test/java/org/apache/kafka/streams/kstream/internals/graph/StreamsGraphTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ public void shouldPartiallyOptimizeWithValueOrKeyChangingOperatorsAfterInitialKe
192192
final Topology attemptedOptimize = getTopologyWithChangingValuesAfterChangingKey(StreamsConfig.OPTIMIZE, false);
193193
final Topology noOptimization = getTopologyWithChangingValuesAfterChangingKey(StreamsConfig.NO_OPTIMIZATION, false);
194194

195-
System.out.println(attemptedOptimize.describe().toString());
196-
System.out.println(noOptimization.describe().toString());
197195
assertEquals("Topologies:\n" +
198196
" Sub-topology: 0\n" +
199197
" Source: KSTREAM-SOURCE-0000000000 (topics: [input])\n" +

0 commit comments

Comments
 (0)