From e919064bb96a44ee4fcb3931250ba182c5d1bbc0 Mon Sep 17 00:00:00 2001 From: Andrey Berezin Date: Thu, 5 Oct 2023 16:42:28 +0300 Subject: [PATCH] [#92] Fix method name Signed-off-by: Andrey Berezin --- src/frostfs_testlib/healthcheck/basic_healthcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frostfs_testlib/healthcheck/basic_healthcheck.py b/src/frostfs_testlib/healthcheck/basic_healthcheck.py index 9ec8694..3f4bc79 100644 --- a/src/frostfs_testlib/healthcheck/basic_healthcheck.py +++ b/src/frostfs_testlib/healthcheck/basic_healthcheck.py @@ -8,7 +8,7 @@ reporter = get_reporter() class BasicHealthcheck(Healthcheck): @reporter.step_deco("Perform healthcheck for {cluster_node}") - def perform_healthcheck(self, cluster_node: ClusterNode): + def perform(self, cluster_node: ClusterNode): health_check = storage_node_healthcheck(cluster_node.storage_node) if health_check.health_status != "READY" or health_check.network_status != "ONLINE": raise AssertionError("Node {cluster_node} is not healthy")