Skip to content

Commit 6cd9e3b

Browse files
committed
fix lint
1 parent ab07761 commit 6cd9e3b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/integration-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ jobs:
157157
go-version: ${{ inputs.go-version }}
158158

159159
- name: run share tests
160-
run: make test-integration SHORT=true TAGS=share
160+
run: make test-integration SHORT=true TAGS=share

share/shwap/sample.go

+4
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,11 @@ func (s *Sample) UnmarshalJSON(data []byte) error {
102102
if err != nil {
103103
return err
104104
}
105+
105106
sample, err := SampleFromProto(&ss)
107+
if err != nil {
108+
return err
109+
}
106110
*s = sample
107111
return nil
108112
}

0 commit comments

Comments
 (0)