upgrade linter and fix new lint errors

This commit is contained in:
Ryan Richard
2024-08-19 15:45:32 -07:00
parent bee87395b1
commit 376b83050a
7 changed files with 4 additions and 13 deletions

View File

@@ -189,7 +189,7 @@ type errSerializationFailureWithCause struct {
}
func (e *errSerializationFailureWithCause) Is(err error) bool {
return stderrors.Is(fosite.ErrSerializationFailure, err)
return stderrors.Is(err, fosite.ErrSerializationFailure)
}
func (e *errSerializationFailureWithCause) Unwrap() error {