Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
f-blass committed Mar 25, 2024
1 parent a7d5732 commit 289264b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpclient/httpclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var mTLSConfig = &env.DefaultIdentity{
func TestDefaultTLSConfig_ReturnsNil(t *testing.T) {
tlsConfig, err := DefaultTLSConfig(&env.DefaultIdentity{})
assert.NoError(t, err)
assert.Nil(t, tlsConfig)
assert.NotNil(t, tlsConfig)
}

func TestDefaultHTTPClient_ClientCertificate(t *testing.T) {
Expand Down

0 comments on commit 289264b

Please sign in to comment.