cadonna commented on a change in pull request #8902: URL: https://github.com/apache/kafka/pull/8902#discussion_r446051842
########## File path: streams/src/test/java/org/apache/kafka/streams/state/internals/MeteredKeyValueStoreTest.java ########## @@ -91,13 +103,18 @@ private KeyValueStore<Bytes, byte[]> inner; @Mock(type = MockType.NICE) private InternalProcessorContext context; + @Mock(type = MockType.NICE) + private Serde<String> keySerde; + @Mock(type = MockType.DEFAULT) + private Serializer<String> keySerializer; + @Mock(type = MockType.NICE) + private Serde<String> valueSerde; + @Mock(type = MockType.DEFAULT) + private Deserializer<String> valueDeserializer; + @Mock(type = MockType.DEFAULT) + private Serializer<String> valueSerializer; Review comment: Ack ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org