Skip to content

Commit 6a4d0b0

Browse files
authored
chore: remove unused parameter for the relayer tests (#4768)
1 parent 1a4e252 commit 6a4d0b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

integration/relayer/cmd_relayer_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ type (
211211
func runChain(
212212
ctx context.Context,
213213
t *testing.T,
214-
env envtest.Env,
215214
app envtest.App,
216215
cfg v1.Config,
217216
tmpDir string,
@@ -359,10 +358,10 @@ func TestBlogIBC(t *testing.T) {
359358
availableport.WithMaxPort(5000),
360359
)
361360
require.NoError(t, err)
362-
hostChainAPI, hostChainRPC, hostChainGRPC, hostChainFaucet := runChain(ctx, t, env, app, hostChainConfig, tmpDir, ports[:7])
361+
hostChainAPI, hostChainRPC, hostChainGRPC, hostChainFaucet := runChain(ctx, t, app, hostChainConfig, tmpDir, ports[:7])
363362
hostChainChainID := hostChainConfig.Genesis["chain_id"].(string)
364363
hostChainHome := hostChainConfig.Validators[0].Home
365-
refChainAPI, refChainRPC, refChainGRPC, refChainFaucet := runChain(ctx, t, env, app, refChainConfig, tmpDir, ports[7:])
364+
refChainAPI, refChainRPC, refChainGRPC, refChainFaucet := runChain(ctx, t, app, refChainConfig, tmpDir, ports[7:])
366365
refChainChainID := refChainConfig.Genesis["chain_id"].(string)
367366
refChainHome := refChainConfig.Validators[0].Home
368367

0 commit comments

Comments
 (0)