pylint complains about this:
************* Module neutron.tests.api.base
C:207, 4: Class method _try_delete_resource should have 'cls' as
first argument (bad-classmethod-argument)
Change-Id: I189c54a2c641b97579761ff37c8f87077037697b
super(BaseNetworkTest, cls).resource_cleanup()
@classmethod
- def _try_delete_resource(self, delete_callable, *args, **kwargs):
+ def _try_delete_resource(cls, delete_callable, *args, **kwargs):
"""Cleanup resources in case of test-failure
Some resources are explicitly deleted by the test.