Skip to content

Commit

Permalink
update tls in expected results
Browse files Browse the repository at this point in the history
  • Loading branch information
michalpristas committed Jan 2, 2025
1 parent 28e7474 commit 157ba10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/config/output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func TestToESConfig(t *testing.T) {
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true, //nolint:gosec // test case
MinVersion: tls.VersionTLS11,
MinVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS13,
Certificates: []tls.Certificate{},
CurvePreferences: []tls.CurveID{},
Expand Down Expand Up @@ -174,7 +174,7 @@ func TestToESConfig(t *testing.T) {
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true, //nolint:gosec // test case
MinVersion: tls.VersionTLS11,
MinVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS13,
Certificates: []tls.Certificate{},
CurvePreferences: []tls.CurveID{},
Expand Down

0 comments on commit 157ba10

Please sign in to comment.