diff --git a/integration-tests/pkg/assert/assert.go b/integration-tests/pkg/assert/assert.go index ff8c869860..2ea8c8554c 100644 --- a/integration-tests/pkg/assert/assert.go +++ b/integration-tests/pkg/assert/assert.go @@ -39,6 +39,8 @@ func AssertNoRuntimeConfig(t *testing.T, collectorIP string) { AssertRepeated(t, tickTime, timeout, runtimeConfigErrorMsg, func() bool { body, err := collector.IntrospectionQuery(collectorIP, "/state/runtime-config") assert.NoError(t, err) + fmt.Println("body: ") + fmt.Println(strings.TrimSpace(string(body))) return strings.TrimSpace(string(body)) == "{}" }) }