We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5ee841 commit 4d434d2Copy full SHA for 4d434d2
tls_test.go
@@ -90,8 +90,9 @@ func (s *TLSTestSuite) TestLoadTLSWithCA() {
90
func (s *TLSTestSuite) TestInsecureSkipVerify() {
91
s.settings.GlobalSettings().Set(config.SocketInsecureSkipVerify, "Y")
92
93
- _, err := loadTLSConfig(s.settings.GlobalSettings())
94
- s.NotNil(err)
+ tlsConfig, err := loadTLSConfig(s.settings.GlobalSettings())
+ s.Nil(err)
95
+ s.Nil(tlsConfig)
96
}
97
98
func (s *TLSTestSuite) TestInsecureSkipVerifyWithUseSSL() {
0 commit comments