From 10ddb6f08592c2740b966e98a6f98a5b83af1896 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Mon, 15 Oct 2018 02:42:09 -0500 Subject: fix lint on tests --- tests/test_compat.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_compat.py') diff --git a/tests/test_compat.py b/tests/test_compat.py index 46fc7d944..4a14caedf 100644 --- a/tests/test_compat.py +++ b/tests/test_compat.py @@ -16,17 +16,17 @@ class TestUnboundMethods(unittest.TestCase): self.assertTrue(is_unbound_method(NewStyle.run)) def test_normal_func_unbound(self): - def func(): + def func(): # pragma: no cover return 'OK' self.assertFalse(is_unbound_method(func)) class OldStyle: - def run(self): + def run(self): # pragma: no cover return 'OK' class NewStyle(object): - def run(self): + def run(self): # pragma: no cover return 'OK' -- cgit v1.2.3