diff --git a/tests/test_methods.py b/tests/test_methods.py index 761e5b9..313adad 100644 --- a/tests/test_methods.py +++ b/tests/test_methods.py @@ -13,9 +13,9 @@ class TestClientMethods(object): for client in Octokit().__dict__: try: cls = getattr(Octokit(), client).__dict__ + assert all(method.islower() for method in cls) except AttributeError: pass # ignore non-class attributes - assert all(method.islower() for method in cls) def test_method_has_doc_string(self): assert Octokit(