Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove debug statements from testcase #416

Merged
merged 15 commits into from
Mar 22, 2024
Merged
2 changes: 0 additions & 2 deletions haproxy_manager/custom_link_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
})

Expand Down Expand Up @@ -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")
})

Expand Down
Loading