From 54b9ff797956272ba17895ac47243369195bb7aa Mon Sep 17 00:00:00 2001 From: Tanmoy Sarkar <57363826+tanmoysrt@users.noreply.github.com> Date: Fri, 22 Mar 2024 20:51:54 +0530 Subject: [PATCH] chore: remove test line --- haproxy_manager/custom_link_test.go | 2 -- 1 file changed, 2 deletions(-) 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") })