mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
pylint: fix bad-classmethod-argument
Reviewed-By: Tomas Krizek <tkrizek@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
parent
9bc57a01e1
commit
f252f50987
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user