Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
samber authored Nov 11, 2024
1 parent 52bfa58 commit 71777fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion result_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestResultErr(t *testing.T) {
func TestResultErrf(t *testing.T) {
is := assert.New(t)

is.Equal(Result[int]{value: 0, isErr: true, err: assert.AnError}, Errf[int](assert.AnError.Error()))
is.Equal(Result[int]{value: 0, isErr: true, err: assert.AnError}, Errf[int](assert.AnError.Error())) //nolint:govet
}

func TestResultTupleToResult(t *testing.T) {
Expand Down

0 comments on commit 71777fe

Please sign in to comment.