diff --git a/pkg/alertcontext/alertcontext_test.go b/pkg/alertcontext/alertcontext_test.go index 15506c99b2c..dc752ba8b09 100644 --- a/pkg/alertcontext/alertcontext_test.go +++ b/pkg/alertcontext/alertcontext_test.go @@ -5,7 +5,6 @@ import ( "net/http" "testing" - "github.com/davecgh/go-spew/spew" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -359,7 +358,6 @@ func TestAppsecEventToContext(t *testing.T) { //run metas, errors := AppsecEventToContext(test.match, test.req) - fmt.Printf(spew.Sdump(metas)) assert.Len(t, errors, test.expectedErrLen) assert.ElementsMatch(t, test.expectedResult, metas) }