Skip to content

Commit

Permalink
Fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-antoniak committed Jul 11, 2024
1 parent ce7179c commit c2e46f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion proxy/pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ func TestTargetConfig_ParsingControlConnMaxProtocolVersion(t *testing.T) {
// test-specific setup
setTargetContactPointsAndPortEnvVars()

conf := New().parseEnvVars()
conf := New()
err := conf.parseEnvVars()
require.Nil(t, err)

tests := []struct {
name string
Expand Down

0 comments on commit c2e46f1

Please sign in to comment.