From b5007c1e86051a2a6073fcd2da5a1c95e93bd5e2 Mon Sep 17 00:00:00 2001 From: Evgenii Baidakov Date: Tue, 26 Sep 2023 11:38:06 +0400 Subject: [PATCH] tests: Passing GW parameters is not required It was a bug inside AIO. It was fixed it the last versions. Signed-off-by: Evgenii Baidakov --- cmd/neofs-rest-gw/integration_test.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/cmd/neofs-rest-gw/integration_test.go b/cmd/neofs-rest-gw/integration_test.go index e0475f2..e7b1825 100644 --- a/cmd/neofs-rest-gw/integration_test.go +++ b/cmd/neofs-rest-gw/integration_test.go @@ -148,13 +148,6 @@ func createDockerContainer(ctx context.Context, t *testing.T, image, version str WaitingFor: wait.NewLogStrategy("aio container started").WithStartupTimeout(30 * time.Second), Name: "restgw-aio-test-" + version, Hostname: "aio", - Env: map[string]string{ - "REST_GW_WALLET_PATH": "/config/wallet-rest.json", - "REST_GW_WALLET_PASSPHRASE": "one", - "REST_GW_WALLET_ADDRESS": "NPFCqWHfi9ixCJRu7DABRbVfXRbkSEr9Vo", - "REST_GW_PEERS_0_ADDRESS": "localhost:8080", - "REST_GW_LISTEN_ADDRESS": "0.0.0.0:8090", - }, HostConfigModifier: func(hostConfig *dockerContainer.HostConfig) { hostConfig.NetworkMode = "host" },