summaryrefslogtreecommitdiffstats
path: root/tests/functional/snapshot/test_activate_on_create.py
diff options
context:
space:
mode:
authorSri Vignesh <sselvan@redhat.com>2020-05-12 12:58:26 +0530
committerBala Konda Reddy M <bala12352@gmail.com>2020-05-15 13:47:51 +0000
commit736e31c5d1dc1106fa0cced36ea5f43b691c7689 (patch)
tree6aa5b2dafeae47231a9c15cddb5dc7e8f2bffbc1 /tests/functional/snapshot/test_activate_on_create.py
parent2d1b8392fe626684c86fae06b93cf8acd308d105 (diff)
[Testfix] Move test from teardown class to teardown
Move cases from teardown class to teardown in snapshot Change-Id: I7b33fa2728665fad000a5ad881f6690d40913f22 Signed-off-by: Sri Vignesh <sselvan@redhat.com>
Diffstat (limited to 'tests/functional/snapshot/test_activate_on_create.py')
-rw-r--r--tests/functional/snapshot/test_activate_on_create.py23
1 files changed, 7 insertions, 16 deletions
diff --git a/tests/functional/snapshot/test_activate_on_create.py b/tests/functional/snapshot/test_activate_on_create.py
index 82d8401af..939641b9c 100644
--- a/tests/functional/snapshot/test_activate_on_create.py
+++ b/tests/functional/snapshot/test_activate_on_create.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017-2018 Red Hat, Inc. <http://www.redhat.com>
+# Copyright (C) 2017-2020 Red Hat, Inc. <http://www.redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -67,23 +67,14 @@ class TestActivateOnCreate(GlusterBaseClass):
g.log.info("set_snap_config Success to disable "
"activate-on-create")
- # Calling GlusterBaseClass tearDown
- self.get_super_method(self, 'tearDown')()
-
- @classmethod
- def tearDownClass(cls):
- """
- Clean up the volume & mount
- """
- # stopping the volume and clean up the volume
- g.log.info("Starting to Cleanup Volume")
- ret = cls.cleanup_volume()
+ # Cleanup-volume
+ ret = self.cleanup_volume()
if not ret:
- raise ExecutionError("Failed to Cleanup Volume and mount")
- g.log.info("Successful in Cleanup Volume and mount")
+ raise ExecutionError("Failed to Cleanup Volume")
+ g.log.info("Successful in Cleanup Volume")
- # calling GlusterBaseClass tearDownClass
- cls.get_super_method(cls, 'tearDownClass')()
+ # Calling GlusterBaseClass tearDown
+ self.get_super_method(self, 'tearDown')()
def test_activate_on_create(self):
# pylint: disable=too-many-branches, too-many-statements