diff --git a/pkg/engine/jmespath/functions_test.go b/pkg/engine/jmespath/functions_test.go index 6a8a74dc5f..e9786259b5 100644 --- a/pkg/engine/jmespath/functions_test.go +++ b/pkg/engine/jmespath/functions_test.go @@ -59,11 +59,9 @@ func Test_ParseJsonSerde(t *testing.T) { for _, tc := range testCases { t.Run(tc, func(t *testing.T) { jp, err := New(fmt.Sprintf(`to_string(parse_json('%s'))`, tc)) - fmt.Println(err) assert.NilError(t, err) result, err := jp.Search("") - fmt.Println(err) assert.NilError(t, err) assert.Equal(t, result, tc) @@ -93,11 +91,9 @@ func Test_ParseJsonComplex(t *testing.T) { for _, tc := range testCases { t.Run(tc.input, func(t *testing.T) { jp, err := New(tc.input) - fmt.Println(err) assert.NilError(t, err) result, err := jp.Search("") - fmt.Println(err) assert.NilError(t, err) assert.Equal(t, result, tc.expectedResult) diff --git a/test/cli/test/custom-functions/policy.yaml b/test/cli/test/custom-functions/policy.yaml index 2b5288894a..cb4cb30cf3 100644 --- a/test/cli/test/custom-functions/policy.yaml +++ b/test/cli/test/custom-functions/policy.yaml @@ -94,4 +94,4 @@ spec: conditions: - key: "{{request.object.metadata.annotations.test | parse_json(@).a }}" operator: NotEquals - value: b \ No newline at end of file + value: b diff --git a/test/cli/test/custom-functions/resources.yaml b/test/cli/test/custom-functions/resources.yaml index fb25b7f7bf..f9bddf3824 100644 --- a/test/cli/test/custom-functions/resources.yaml +++ b/test/cli/test/custom-functions/resources.yaml @@ -66,4 +66,4 @@ metadata: name: invalid-test annotations: test: | - {"a": "not-b"} \ No newline at end of file + {"a": "not-b"} diff --git a/test/cli/test/custom-functions/test.yaml b/test/cli/test/custom-functions/test.yaml index 53a4c4af68..173dd91d84 100644 --- a/test/cli/test/custom-functions/test.yaml +++ b/test/cli/test/custom-functions/test.yaml @@ -38,4 +38,4 @@ results: rule: test-json-parsing-jmespath resource: invalid-test kind: ConfigMap - result: fail \ No newline at end of file + result: fail