Browse Source

abci/client: use a no-op logger in the test (#7633)

This averts a log-after-close issue. We should probably also chase the shutdown
issues, but since ABCI clients should generally only shut down once per process
I don't think this is a real priority, and the trace is hairy.
pull/7643/head
M. J. Fromberger 2 years ago
committed by GitHub
parent
commit
a806739375
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      abci/client/socket_client_test.go

+ 1
- 1
abci/client/socket_client_test.go View File

@ -23,7 +23,7 @@ func TestProperSyncCalls(t *testing.T) {
defer cancel()
app := slowApp{}
logger := log.NewTestingLogger(t)
logger := log.TestingLogger()
_, c := setupClientServer(ctx, t, logger, app)


Loading…
Cancel
Save