Fix method name

Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
pull/70/head
Andrey Berezin 2023-07-27 12:05:49 +03:00
parent 0e1d34b2f7
commit 49e1019a2c
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ create: ${VENV_DIR}
${VENV_DIR}:
@echo Create virtual environment ${VENV_DIR}
virtualenv --python=python${PYTHON_VERSION} --prompt=frostfs-testlib ${VENV_DIR}
virtualenv --python=python${PYTHON_VERSION} --prompt=${VENV_NAME} ${VENV_DIR}
requirements:
@echo Isntalling pip requirements

View File

@ -69,7 +69,7 @@ def after_run_return_all_stopped_services(cluster_state_controller: ClusterState
@pytest.fixture(scope="function")
def after_run_return_all_stopped_s3(cluster_state_controller: ClusterStateController):
yield
cluster_state_controller.start_stopped_s3_gate()
cluster_state_controller.start_stopped_s3_gates()
def panic_reboot_host(host: Host) -> None: