Skip to content

Commit

Permalink
post merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Jan 18, 2020
1 parent 1d252f5 commit 62c9b06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper/validation/strings.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func StringDoesNotContainAny(chars string) schema.SchemaValidateFunc {
}

if strings.ContainsAny(v, chars) {
es = append(es, fmt.Errorf("expected value of %s to not contain any of %q, got %v", k, chars, i))
errors = append(errors, fmt.Errorf("expected value of %s to not contain any of %q, got %v", k, chars, i))
return warnings, errors
}

Expand Down

0 comments on commit 62c9b06

Please sign in to comment.