Skip to content

Commit

Permalink
semver: replace use of .eq method with == (#19953)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimshrier committed Nov 21, 2023
1 parent f8ed96a commit be8e911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/semver/semver_test.v
Expand Up @@ -171,7 +171,7 @@ fn test_coerce() {
assert false
return
}
assert fixed.eq(valid)
assert fixed == valid
}
}

Expand Down

0 comments on commit be8e911

Please sign in to comment.