From a8067393755f5e48cece7a9a14dd667b337edfa1 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Wed, 19 Jan 2022 08:58:35 -0800 Subject: [PATCH] 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. --- abci/client/socket_client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abci/client/socket_client_test.go b/abci/client/socket_client_test.go index ae060cead..a3469ddd1 100644 --- a/abci/client/socket_client_test.go +++ b/abci/client/socket_client_test.go @@ -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)