Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
austinvalle committed Aug 7, 2024
1 parent 2d1a154 commit fa38079
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/randomtest/bcrypt_hash_match.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var _ compare.ValueComparer = bcryptHashMatch{}

type bcryptHashMatch struct{}

// CompareValues determines whether the first value is a valid bcrypt hash of the second value
// CompareValues determines whether the first value is a valid bcrypt hash of the second value.
func (v bcryptHashMatch) CompareValues(values ...any) error {
if len(values) != 2 {
return fmt.Errorf("expected to receive two values to compare, but got: %d", len(values))
Expand Down
2 changes: 1 addition & 1 deletion internal/randomtest/bcrypt_hash_mismatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var _ compare.ValueComparer = bcryptHashMismatch{}

type bcryptHashMismatch struct{}

// CompareValues determines whether the first value is a valid bcrypt hash of the second value
// CompareValues determines whether the first value is a valid bcrypt hash of the second value.
func (v bcryptHashMismatch) CompareValues(values ...any) error {
if len(values) != 2 {
return fmt.Errorf("expected to receive two values to compare, but got: %d", len(values))
Expand Down

0 comments on commit fa38079

Please sign in to comment.