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.
This commit is contained in:
M. J. Fromberger
2022-01-19 08:58:35 -08:00
committed by GitHub
parent 1af4113033
commit a806739375
+1 -1
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)