Skip to content

Commit 62c9b06

Browse files
committed
post merge cleanup
1 parent 1d252f5 commit 62c9b06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helper/validation/strings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func StringDoesNotContainAny(chars string) schema.SchemaValidateFunc {
159159
}
160160

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

0 commit comments

Comments
 (0)