Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
peczenyj committed Nov 10, 2023
1 parent cb56064 commit 1a12005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestIsFunction(t *testing.T) {

assert.True(t, errors.Is(io.EOF, io.EOF))
assert.True(t, errors.Is(err, io.EOF))
assert.False(t, errors.Is(err, errors.ErrUnsupported))
assert.False(t, errors.Is(err, io.ErrUnexpectedEOF))
}

var (
Expand Down

0 comments on commit 1a12005

Please sign in to comment.