Skip to content

Commit

Permalink
Update listenKey_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
dirname committed May 17, 2021
1 parent f44fbdf commit 463cf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion futures/usd/websocket/account/listenKey_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func TestNewListenKeyBuilder(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewListenKeyBuilder(tt.args.host, tt.args.appKey, tt.args.appSecret); !reflect.DeepEqual(got, tt.want) {
if got := NewListenKeyBuilder(tt.args.host, tt.args.appKey, tt.args.appSecret); reflect.DeepEqual(got, tt.want) {
t.Errorf("NewListenKeyBuilder() = %v, want %v", got, tt.want)
}
})
Expand Down

0 comments on commit 463cf47

Please sign in to comment.