mjsax commented on code in PR #18154:
URL: https://github.com/apache/kafka/pull/18154#discussion_r1881322001
##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/ProcessorTopologyTest.java:
##########
@@ -337,39 +338,7 @@ public void testDrivingConnectedStateStoreTopology() {
driver = new
TopologyTestDriver(createConnectedStateStoreTopology("connectedStore"), props);
final TestInputTopic<String, String> inputTopic =
driver.createInputTopic(INPUT_TOPIC_1, STRING_SERIALIZER, STRING_SERIALIZER);
final TestOutputTopic<Integer, String> outputTopic1 =
- driver.createOutputTopic(OUTPUT_TOPIC_1,
Serdes.Integer().deserializer(), Serdes.String().deserializer());
-
- inputTopic.pipeInput("key1", "value1");
- inputTopic.pipeInput("key2", "value2");
- inputTopic.pipeInput("key3", "value3");
- inputTopic.pipeInput("key1", "value4");
- assertTrue(outputTopic1.isEmpty());
-
- final KeyValueStore<String, String> store =
driver.getKeyValueStore("connectedStore");
- assertEquals("value4", store.get("key1"));
- assertEquals("value2", store.get("key2"));
- assertEquals("value3", store.get("key3"));
- assertNull(store.get("key4"));
- }
Review Comment:
Diff is just weird.. this was not removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]