Skip to content

Commit

Permalink
chore: ignore tprallel linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jtieri committed Oct 1, 2024
1 parent 1ea3529 commit cd1356f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions interchain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down Expand Up @@ -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)
}

Expand Down

0 comments on commit cd1356f

Please sign in to comment.