Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vgonkivs committed Jan 10, 2025
1 parent ab07761 commit 6cd9e3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ jobs:
go-version: ${{ inputs.go-version }}

- name: run share tests
run: make test-integration SHORT=true TAGS=share
run: make test-integration SHORT=true TAGS=share
4 changes: 4 additions & 0 deletions share/shwap/sample.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ func (s *Sample) UnmarshalJSON(data []byte) error {
if err != nil {
return err
}

sample, err := SampleFromProto(&ss)
if err != nil {
return err
}
*s = sample
return nil
}
Expand Down

0 comments on commit 6cd9e3b

Please sign in to comment.