From ac61ca7fd0de53269dab178eafb139085d6655ca Mon Sep 17 00:00:00 2001 From: Nick Ethier Date: Fri, 29 Jun 2018 23:15:28 -0400 Subject: [PATCH] e2e/framework: add missing errorf var --- e2e/framework/case.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/framework/case.go b/e2e/framework/case.go index c8bfaa43c..77c0daa20 100644 --- a/e2e/framework/case.go +++ b/e2e/framework/case.go @@ -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