summaryrefslogtreecommitdiffstats
path: root/tests/functional/dht/test_dht_hash_value.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/dht/test_dht_hash_value.py')
-rw-r--r--tests/functional/dht/test_dht_hash_value.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/functional/dht/test_dht_hash_value.py b/tests/functional/dht/test_dht_hash_value.py
index c5f08dcfa..b7969b60b 100644
--- a/tests/functional/dht/test_dht_hash_value.py
+++ b/tests/functional/dht/test_dht_hash_value.py
@@ -38,7 +38,8 @@ from glustolibs.gluster.glusterfile import (file_exists, get_fattr,
['glusterfs']])
class TestDHTHashValue(GlusterBaseClass):
def setUp(self):
- GlusterBaseClass.setUp.im_func(self)
+ self.get_super_method(self, 'setUp')()
+
# Setup Volume
ret = self.setup_volume_and_mount_volume(self.mounts)
@@ -216,4 +217,4 @@ class TestDHTHashValue(GlusterBaseClass):
if not ret:
g.log.error("Failed to Setup and Mount Volume")
raise ExecutionError('Failed to unmount and clean volumes')
- GlusterBaseClass.tearDown.im_func(self)
+ self.get_super_method(self, 'tearDown')()