We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1dac3f7 + 2792270 commit 22205eeCopy full SHA for 22205ee
1 file changed
sdks/python/apache_beam/runners/portability/fn_api_runner/fn_runner_test.py
@@ -825,15 +825,11 @@ def raise_error(x):
825
| beam.Create(['a', 'b'])
826
| 'StageA' >> beam.Map(lambda x: x)
827
| 'StageB' >> beam.Map(lambda x: x)
828
- | 'FusionBreakBeforeRaise' >> beam.Reshuffle()
829
| 'StageC' >> beam.Map(raise_error)
830
- | 'FusionBreakAfterRaise' >> beam.Reshuffle()
831
| 'StageD' >> beam.Map(lambda x: x))
832
message = e_cm.exception.args[0]
833
self.assertIn('StageC', message)
834
- self.assertNotIn('StageA', message)
835
self.assertNotIn('StageB', message)
836
- self.assertNotIn('StageD', message)
837
838
def test_error_traceback_includes_user_code(self):
839
def first(x):
0 commit comments