summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorArun Kumar <arukumar@redhat.com>2020-07-31 16:13:23 +0530
committerArun Kumar <arukumar@redhat.com>2020-07-31 16:13:23 +0530
commit41b08339698e515ce6c1b4cae825e116b7448d61 (patch)
tree0d8312a0a40d0c1be9104c8c87fe2ead2724a98c /tests
parent8465064aed5cd4ea667902b70f99970235e2f8c8 (diff)
[TestFix] Remove redundant skip statement from test case
'TestGlusterBlockStability.SetUp' already have a check for 'crs' or 'cns'. Removed redundant skip statement which perform same step in test case 'test_initiator_side_failures_initiator_and_target_on_same_node'. Change-Id: Ia587f9d17b9752a218ead030faa6941938b0d4c7 Signed-off-by: Arun Kumar <arukumar@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/gluster_stability/test_gluster_block_stability.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/functional/gluster_stability/test_gluster_block_stability.py b/tests/functional/gluster_stability/test_gluster_block_stability.py
index 4ac68ca8..896d2ce0 100644
--- a/tests/functional/gluster_stability/test_gluster_block_stability.py
+++ b/tests/functional/gluster_stability/test_gluster_block_stability.py
@@ -226,12 +226,6 @@ class TestGlusterBlockStability(GlusterBlockBaseClass):
# Get the list of nodes other than gluster
o_nodes = list((set(nodes) - set(g_nodes)))
- # Skip the test case if it is crs setup
- if not g_nodes:
- self.skipTest("skipping test case because it is not a "
- "containerized gluster setup. "
- "This test case is for containerized gluster only.")
-
# Make other nodes unschedulable
oc_adm_manage_node(
self.node, '--schedulable=false', nodes=o_nodes)