Skip to content

Commit

Permalink
Remove leftover comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lostluck committed Jul 28, 2023
1 parent f4ff414 commit 5b28d6d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sdks/go/pkg/beam/runners/prism/internal/execute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,6 @@ func TestRunner_Pipelines(t *testing.T) {
pipeline: func(s beam.Scope) {
imp := beam.Impulse(s)
col0 := beam.ParDo(s, dofn1, imp)
// col1 := beam.ParDo(s, dofn2, col0)
// Doesn't matter which of col1 or col2 is used.
sum := beam.ParDo(s, dofn3x1, col0, beam.SideInput{Input: col0}, beam.SideInput{Input: col0})
beam.ParDo(s, &int64Check{
Name: "sum sideinput check",
Expand All @@ -339,7 +337,7 @@ func TestRunner_Pipelines(t *testing.T) {
imp := beam.Impulse(s)
col0 := beam.ParDo(s, dofn1, imp)
col1 := beam.ParDo(s, dofn2, col0)
// Doesn't matter which of col1 or col2 is used.
// Doesn't matter which of col0 or col1 is used.
sum := beam.ParDo(s, dofn3x1, col0, beam.SideInput{Input: col0}, beam.SideInput{Input: col1})
beam.ParDo(s, &int64Check{
Name: "sum sideinput check",
Expand Down

0 comments on commit 5b28d6d

Please sign in to comment.