From e956b956d4d2c849dfca34c23bdc5c443640370d Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 24 Aug 2021 12:59:44 -0400 Subject: [PATCH] lint fix --- inspect/inspect_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inspect/inspect_test.go b/inspect/inspect_test.go index e25629429..f16f57243 100644 --- a/inspect/inspect_test.go +++ b/inspect/inspect_test.go @@ -144,7 +144,7 @@ func TestTxSearch(t *testing.T) { cli, err := httpclient.New(rpcConfig.ListenAddress) require.NoError(t, err) - var page int = 1 + var page = 1 resultTxSearch, err := cli.TxSearch(context.Background(), testQuery, false, &page, &page, "") require.NoError(t, err) require.Len(t, resultTxSearch.Txs, 1) @@ -576,7 +576,7 @@ func requireConnect(t testing.TB, addr string, retries int) { conn.Close() return } - //FIXME attempt to yield and let the other goroutine continue execution. + // FIXME attempt to yield and let the other goroutine continue execution. time.Sleep(time.Microsecond) } t.Fatalf("unable to connect to server %s after %d tries: %s", addr, retries, err)