X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/22c599abc18895f73e96095f35b71cf3357d41b4..4fad3266d27d3d193c6e25298c6085dbf8a6b610:/hotline/client_conn_test.go diff --git a/hotline/client_conn_test.go b/hotline/client_conn_test.go index d18f9b6..da0a2cc 100644 --- a/hotline/client_conn_test.go +++ b/hotline/client_conn_test.go @@ -11,13 +11,13 @@ func TestClientConn_handleTransaction(t *testing.T) { ID *[]byte Icon *[]byte Flags *[]byte - UserName *[]byte + UserName []byte Account *Account - IdleTime *int + IdleTime int Server *Server Version *[]byte Idle bool - AutoReply *[]byte + AutoReply []byte } type args struct { transaction *Transaction @@ -39,7 +39,6 @@ func TestClientConn_handleTransaction(t *testing.T) { Flags: tt.fields.Flags, UserName: tt.fields.UserName, Account: tt.fields.Account, - IdleTime: tt.fields.IdleTime, Server: tt.fields.Server, Version: tt.fields.Version, Idle: tt.fields.Idle, @@ -50,4 +49,4 @@ func TestClientConn_handleTransaction(t *testing.T) { } }) } -} \ No newline at end of file +}