claudevdm commented on code in PR #35725: URL: https://github.com/apache/beam/pull/35725#discussion_r2310251963
########## sdks/python/apache_beam/transforms/ptransform_test.py: ########## @@ -738,6 +742,67 @@ def test_flatten_one_single_pcollection(self): result = (pcoll, ) | 'Single Flatten' >> beam.Flatten() assert_that(result, equal_to(input)) + @parameterized.expand([ + param(compat_version=None), + param(compat_version="2.66.0"), + ]) + @pytest.mark.it_validatesrunner + def test_group_by_key_importable_special_types(self, compat_version): Review Comment: Types that can be imported (not dynamic) like from a.b.c import d -- 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