From cd1356f06b9d5f7d597f0152c8cf1f7fdf25053d Mon Sep 17 00:00:00 2001 From: Justin Tieri <37750742+jtieri@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:46:38 -0500 Subject: [PATCH] chore: ignore tprallel linter warnings --- interchain_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interchain_test.go b/interchain_test.go index dbb5229d0..923ec8b64 100644 --- a/interchain_test.go +++ b/interchain_test.go @@ -88,11 +88,11 @@ func duplicateChainTest(t *testing.T, relayerImpl ibc.RelayerImplementation) { _ = ic.Close() } -func TestInterchain_GetRelayerWallets_CosmosRly(t *testing.T) { +func TestInterchain_GetRelayerWallets_CosmosRly(t *testing.T) { //nolint:tparallel getRelayerWalletsTest(t, ibc.CosmosRly) } -func TestInterchain_GetRelayerWallets_HermesRelayer(t *testing.T) { +func TestInterchain_GetRelayerWallets_HermesRelayer(t *testing.T) { //nolint:tparallel getRelayerWalletsTest(t, ibc.Hermes) } @@ -255,11 +255,11 @@ func TestInterchain_CreateUser(t *testing.T) { }) } -func TestCosmosChain_BroadcastTx_CosmosRly(t *testing.T) { +func TestCosmosChain_BroadcastTx_CosmosRly(t *testing.T) { //nolint:tparallel broadcastTxCosmosChainTest(t, ibc.CosmosRly) } -func TestCosmosChain_BroadcastTx_HermesRelayer(t *testing.T) { +func TestCosmosChain_BroadcastTx_HermesRelayer(t *testing.T) { //nolint:tparallel broadcastTxCosmosChainTest(t, ibc.Hermes) }