diff --git a/haproxy_manager/custom_link_test.go b/haproxy_manager/custom_link_test.go index 0644ab3d50..b0a1a8d6de 100644 --- a/haproxy_manager/custom_link_test.go +++ b/haproxy_manager/custom_link_test.go @@ -29,7 +29,6 @@ func TestCustomLink(t *testing.T) { } // check now config = fetchConfig(transactionId) - t.Log(config) assert.Equal(t, strings.Contains(config, output), true, "tcp link should exist") }) @@ -59,7 +58,6 @@ func TestCustomLink(t *testing.T) { } // ensure tcp link exists only once config = fetchConfig(transactionId) - t.Log(config) assert.Equal(t, strings.Count(config, output), 1, "tcp link should exist") })