Skip to content

Commit

Permalink
Make comment clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Dec 11, 2023
1 parent 60589a1 commit 82ca137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mbt/driver/mbt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ func CompareTimes(
// The names in the model validator set are expected to correspond to the monikers in the system validator set.
func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int64) error {
expectedValSet := make(map[string]int64, len(modelValSet))
// strip away vals with power 0, because they are not always in the system validator set
// strip away vals with power 0, because they don't matter for the comparison
for val, power := range modelValSet {
if power.Value.(int64) == 0 {
continue
Expand Down

0 comments on commit 82ca137

Please sign in to comment.