e2e/framework: add missing errorf var

This commit is contained in:
Nick Ethier 2018-06-29 23:15:28 -04:00
parent c3e3919637
commit ac61ca7fd0
No known key found for this signature in database
GPG key ID: 07C1A3ECED90D24A

View file

@ -52,7 +52,7 @@ func (c Constraints) matches(env Environment) error {
for _, t := range c.Tags {
if _, ok := env.Tags[t]; !ok {
return fmt.Errorf("tags constraint failed, tag '%s' is not included in environment")
return fmt.Errorf("tags constraint failed, tag '%s' is not included in environment", t)
}
}
return nil