derrickaw commented on code in PR #35568: URL: https://github.com/apache/beam/pull/35568#discussion_r2240615130
########## sdks/python/apache_beam/yaml/examples/testing/examples_test.py: ########## @@ -117,15 +117,17 @@ def _fn(row): @beam.ptransform.ptransform_fn def test_kafka_read( pcoll, - format, - topic, - bootstrap_servers, - auto_offset_reset_config, - consumer_config): + topic: Optional[str] = None, + format: Optional[str] = None, + schem: Optional[Any] = None, + bootstrap_servers: Optional[str] = None, + auto_offset_reset_config: Optional[str] = None, + consumer_config: Optional[Any] = None): """ - This PTransform simulates the behavior of the ReadFromKafka transform - with the RAW format by simply using some fixed sample text data and - encode it to raw bytes. + Mocks the ReadFromKafka transform for testing purposes. + + This PTransform simulates the behavior of the ReadFromKafka transform by + reading from predefined in-memory data based on the Kafka topic argument. Args: Review Comment: needs schema arg doc string -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org