Skip to content

Commit a2bb1e1

Browse files
authored
Fix formatting using go fmt (apache#15189)
1 parent fd2dac0 commit a2bb1e1

File tree

5 files changed

+80
-82
lines changed

5 files changed

+80
-82
lines changed

sdks/go/pkg/beam/core/runtime/xlangx/payload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
"bytes"
2020
"reflect"
2121

22-
pipepb "github.com/apache/beam/sdks/go/pkg/beam/model/pipeline_v1"
2322
"github.com/apache/beam/sdks/go/pkg/beam/core/graph/coder"
2423
"github.com/apache/beam/sdks/go/pkg/beam/core/runtime/graphx/schema"
2524
"github.com/apache/beam/sdks/go/pkg/beam/internal/errors"
25+
pipepb "github.com/apache/beam/sdks/go/pkg/beam/model/pipeline_v1"
2626
"google.golang.org/protobuf/proto"
2727
)
2828

sdks/go/pkg/beam/testing/passert/equals.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,3 @@ func readToStrings(iter func(*beam.T) bool) []string {
113113
sort.Strings(out)
114114
return out
115115
}
116-

sdks/go/pkg/beam/testing/passert/equals_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func ExampleEqualsList() {
168168
}
169169

170170
func unwrapError(err error) error {
171-
if wrapper, ok := err.(interface{ Unwrap() error}); ok {
171+
if wrapper, ok := err.(interface{ Unwrap() error }); ok {
172172
return wrapper.Unwrap()
173173
}
174174
return err

0 commit comments

Comments
 (0)