diff --git a/robot/resources/lib/python_keywords/container.py b/robot/resources/lib/python_keywords/container.py index 02b2febf..1e25b596 100644 --- a/robot/resources/lib/python_keywords/container.py +++ b/robot/resources/lib/python_keywords/container.py @@ -123,7 +123,7 @@ def list_containers(wallet: str, shell: Shell) -> list[str]: """ cli = NeofsCli(shell, NEOFS_CLI_EXEC, WALLET_CONFIG) result = cli.container.list(rpc_endpoint=NEOFS_ENDPOINT, wallet=wallet) - logger.info(f"Containers: \n{output}") + logger.info(f"Containers: \n{result}") return result.stdout.split()