From 5853654f0a618dc89f893992a7f0d211456483f8 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Wed, 18 Jan 2023 14:56:58 -0800 Subject: Improve third party client compatability --- hotline/transaction_handlers_test.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'hotline/transaction_handlers_test.go') diff --git a/hotline/transaction_handlers_test.go b/hotline/transaction_handlers_test.go index 2720cdd..69dedf9 100644 --- a/hotline/transaction_handlers_test.go +++ b/hotline/transaction_handlers_test.go @@ -232,21 +232,18 @@ func TestHandleGetUserNameList(t *testing.T) { Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: true, }, uint16(2): { ID: &[]byte{0, 2}, Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: true, }, uint16(3): { ID: &[]byte{0, 3}, Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: false, }, }, }, -- cgit From 8ce5db7c06589e30b22e4fb7ec8fdb415f711f60 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Wed, 18 Jan 2023 15:01:23 -0800 Subject: Fix test --- hotline/transaction_handlers_test.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'hotline/transaction_handlers_test.go') diff --git a/hotline/transaction_handlers_test.go b/hotline/transaction_handlers_test.go index 69dedf9..dae2dc0 100644 --- a/hotline/transaction_handlers_test.go +++ b/hotline/transaction_handlers_test.go @@ -239,12 +239,6 @@ func TestHandleGetUserNameList(t *testing.T) { Flags: []byte{0, 3}, UserName: []byte{0, 4}, }, - uint16(3): { - ID: &[]byte{0, 3}, - Icon: []byte{0, 2}, - Flags: []byte{0, 3}, - UserName: []byte{0, 4}, - }, }, }, }, -- cgit