Skip to content

Commit

Permalink
stores/json: use assert
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman committed Sep 19, 2023
1 parent 93043d7 commit faa520b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions stores/json/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,5 @@ func TestConflictingAttributes(t *testing.T) {
`
s := new(Store)
_, err := s.LoadPlainFile([]byte(data))
if err != nil {
t.Errorf("did not expect error, got %v", err)
}
assert.Nil(t, err)
}

0 comments on commit faa520b

Please sign in to comment.