tvalentyn commented on code in PR #30744:
URL: https://github.com/apache/beam/pull/30744#discussion_r1541967826
##########
sdks/python/apache_beam/transforms/core_test.py:
##########
@@ -169,6 +169,18 @@ def test_flatten_mismatched_windows(self):
FixedWindows(100))
_ = (source1, source2, source3) | "flatten" >> beam.Flatten()
+class FlatMapTest(unittest.TestCase):
+
+ def test_default(self):
+
+ with beam.Pipeline() as pipeline:
+ letters = (
+ pipeline
+ | 'Gardening plants' >> beam.Create(['abc', 'def'], reshuffle=False)
Review Comment:
```suggestion
| beam.Create(['abc', 'def'], reshuffle=False)
```
--
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]