diff options
author | Valerii Ponomarov <vponomar@redhat.com> | 2019-11-29 21:57:12 +0530 |
---|---|---|
committer | Bala Konda Reddy M <bmekala@redhat.com> | 2019-12-12 11:25:22 +0000 |
commit | c0831bdd436d389fe45b3d8fa9061fe3d6827d10 (patch) | |
tree | e83a445292840c8c69fc1523d41813976c645cee /tests/functional/authentication/test_authentication_allow_blank.py | |
parent | 5f9e15da17669665fc7a5f8d2d306082372e967e (diff) |
[py2to3] Add py3 support for tests in 'tests/functional/authentication'
Change-Id: I1c568a43bb635720a4aedc75ba844a4f499130fe
Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
Diffstat (limited to 'tests/functional/authentication/test_authentication_allow_blank.py')
-rw-r--r-- | tests/functional/authentication/test_authentication_allow_blank.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/authentication/test_authentication_allow_blank.py b/tests/functional/authentication/test_authentication_allow_blank.py index d9b87ed5f..dab0baab3 100644 --- a/tests/functional/authentication/test_authentication_allow_blank.py +++ b/tests/functional/authentication/test_authentication_allow_blank.py @@ -44,7 +44,7 @@ class AuthAllowEmptyString(GlusterBaseClass): g.log.info("Volume %s has been setup successfully", self.volname) # Calling GlusterBaseClass Setup - GlusterBaseClass.setUp.im_func(self) + self.get_super_method(self, 'setUp')() def test_validate_authallow(self): """ |