diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-11-27 13:05:09 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 13:05:09 -0800 |
| commit | d0ba21fc13154c2ffc95829cd064a8e804ea93e3 (patch) | |
| tree | b343092f34f9052501030e2a43f37813e6471587 /hotline/transaction_handlers_test.go | |
| parent | 931031276f4a663b61abaa2e5207740565de8351 (diff) | |
Add missing error handling and logging (#109)
Diffstat (limited to 'hotline/transaction_handlers_test.go')
| -rw-r--r-- | hotline/transaction_handlers_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/transaction_handlers_test.go b/hotline/transaction_handlers_test.go index 01880f2..525bb88 100644 --- a/hotline/transaction_handlers_test.go +++ b/hotline/transaction_handlers_test.go @@ -2438,7 +2438,7 @@ func TestHandleSendInstantMsg(t *testing.T) { }, }, }, - wantErr: assert.NoError, + wantErr: assert.Error, }, { name: "when client 1 sends a message to client 2", |