This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new e932f88 Minor fix in unit test
new 413052c Merge pull request #13761 from mallamanis/patch-1
e932f88 is described below
commit e932f88054e207325ffebca0547c990fd03a00cc
Author: Miltos <[email protected]>
AuthorDate: Fri Jan 15 08:57:46 2021 +0000
Minor fix in unit test
---
sdks/python/apache_beam/pipeline_test.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdks/python/apache_beam/pipeline_test.py
b/sdks/python/apache_beam/pipeline_test.py
index e86de57..8ef31cd 100644
--- a/sdks/python/apache_beam/pipeline_test.py
+++ b/sdks/python/apache_beam/pipeline_test.py
@@ -636,7 +636,7 @@ class PipelineTest(unittest.TestCase):
pcoll2 = pcoll1 | 'do1' >> FlatMap(lambda x: [x + 1])
pcoll3 = pcoll2 | 'do2' >> FlatMap(lambda x: [x + 1])
self.assertIs(pcoll1.is_bounded, False)
- self.assertIs(pcoll1.is_bounded, False)
+ self.assertIs(pcoll2.is_bounded, False)
self.assertIs(pcoll3.is_bounded, False)
def test_track_pcoll_bounded(self):