summaryrefslogtreecommitdiffstats
path: root/ipatests/test_ipalib
diff options
context:
space:
mode:
authorJan Barta <55042barta@sstebrno.eu>2016-06-03 12:52:54 +0200
committerMartin Basti <mbasti@redhat.com>2016-09-22 16:52:57 +0200
commitf252f50987cfb1234671ca1742c11a0eebe8633c (patch)
treeab7f7dcd51d5690dd61b4a8bc5f488b2d7a83225 /ipatests/test_ipalib
parent9bc57a01e1c0942e1a94ac0d948c8c5f8c0d4dcc (diff)
downloadfreeipa-f252f50987cfb1234671ca1742c11a0eebe8633c.tar.gz
freeipa-f252f50987cfb1234671ca1742c11a0eebe8633c.tar.xz
freeipa-f252f50987cfb1234671ca1742c11a0eebe8633c.zip
pylint: fix bad-classmethod-argument
Reviewed-By: Tomas Krizek <tkrizek@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
Diffstat (limited to 'ipatests/test_ipalib')
-rw-r--r--ipatests/test_ipalib/test_rpc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipatests/test_ipalib/test_rpc.py b/ipatests/test_ipalib/test_rpc.py
index f03895123..ae83a5d10 100644
--- a/ipatests/test_ipalib/test_rpc.py
+++ b/ipatests/test_ipalib/test_rpc.py
@@ -257,7 +257,7 @@ class test_xmlclient(PluginTester):
class test_xml_introspection(object):
@classmethod
- def setup_class(self):
+ def setup_class(cls):
try:
api.Backend.xmlclient.connect()
except (errors.NetworkError, IOError):
@@ -265,7 +265,7 @@ class test_xml_introspection(object):
(__name__, api.env.xmlrpc_uri))
@classmethod
- def teardown_class(self):
+ def teardown_class(cls):
request.destroy_context()
def test_list_methods(self):