From 46c3b785189e58cee9d45f346d26581715e1ccf8 Mon Sep 17 00:00:00 2001 From: shravan Date: Mon, 16 Mar 2020 14:18:51 +0530 Subject: [PATCH] 725 fixing tests --- pkg/engine/validation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/engine/validation_test.go b/pkg/engine/validation_test.go index a7a036bedc..5a77d81b69 100644 --- a/pkg/engine/validation_test.go +++ b/pkg/engine/validation_test.go @@ -294,7 +294,7 @@ func TestValidate_Fail_anyPattern(t *testing.T) { resourceUnstructured, err := utils.ConvertToUnstructured(rawResource) assert.NilError(t, err) er := Validate(PolicyContext{Policy: policy, NewResource: *resourceUnstructured}) - msgs := []string{"Validation rule 'check-default-namespace' has failed"} + msgs := []string{"A namespace is required"} for index, r := range er.PolicyResponse.Rules { assert.Equal(t, r.Message, msgs[index]) }