Skip to content

Commit

Permalink
test config as client will be different for sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
abhimutant committed Feb 29, 2024
1 parent d7633ef commit 29cc646
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nutanix/config_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package nutanix

import (
"reflect"
"testing"
)

Expand Down Expand Up @@ -69,7 +68,7 @@ func TestConfig_Client(t *testing.T) {
t.Errorf("Config.Client() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
if got == tt.want {
t.Errorf("Config.Client() = %v, want %v", got, tt.want)
}
})
Expand Down

0 comments on commit 29cc646

Please sign in to comment.