Skip to content

Commit

Permalink
Update internal/client/client_test.go
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Cordell <[email protected]>
  • Loading branch information
tstirrat15 and ecordell authored Sep 19, 2024
1 parent 1948291 commit 75a4c78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ func TestGetCurrentTokenWithCLIOverrideWithoutConfigFile(t *testing.T) {
require.True(token.AnyValue())
require.Equal("t1", token.APIToken)
require.Equal("e1", token.Endpoint)
require.Equal(&bTrue, token.Insecure)
require.NotNil(token.Insecure)
require.True(*token.Insecure)
}

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

0 comments on commit 75a4c78

Please sign in to comment.