This is an automated email from the ASF dual-hosted git repository. lostluck pushed a commit to branch beam24931 in repository https://gitbox.apache.org/repos/asf/beam.git
commit aa3cfd223120261fc3d0eb57ba70f1b1a76c972f Author: Robert Burke <[email protected]> AuthorDate: Sat Jan 7 00:21:54 2023 -0800 remove vestigial init from integ test --- sdks/go/test/integration/primitives/checkpointing.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdks/go/test/integration/primitives/checkpointing.go b/sdks/go/test/integration/primitives/checkpointing.go index 1a52f9d8aeb..ae61f318629 100644 --- a/sdks/go/test/integration/primitives/checkpointing.go +++ b/sdks/go/test/integration/primitives/checkpointing.go @@ -97,8 +97,6 @@ func (fn *selfCheckpointingDoFn) ProcessElement(rt *sdf.LockRTracker, _ []byte, // Checkpoints is a small test pipeline to establish the correctness of the simple test case. func Checkpoints(s beam.Scope) { - beam.Init() - s.Scope("checkpoint") out := beam.ParDo(s, &selfCheckpointingDoFn{}, beam.Impulse(s)) passert.Count(s, out, "num ints", 10)
