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_response.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/test_response.py') diff --git a/tests/test_response.py b/tests/test_response.py index 6ea7125b5..5231e47f0 100644 --- a/tests/test_response.py +++ b/tests/test_response.py @@ -166,7 +166,7 @@ class TestResponseAdapter(unittest.TestCase): dec = self._makeOne(IFoo) - def foo(): + def foo(): # pragma: no cover pass config = DummyConfigurator() @@ -186,7 +186,7 @@ class TestResponseAdapter(unittest.TestCase): dec = self._makeOne(IFoo, IBar) - def foo(): + def foo(): # pragma: no cover pass config = DummyConfigurator() @@ -205,7 +205,7 @@ class TestResponseAdapter(unittest.TestCase): dummy_venusian = DummyVenusian() dec.venusian = dummy_venusian - def foo(): + def foo(): # pragma: no cover pass dec(foo) @@ -223,7 +223,7 @@ class TestResponseAdapter(unittest.TestCase): dummy_venusian = DummyVenusian() dec.venusian = dummy_venusian - def foo(): + def foo(): # pragma: no cover pass dec(foo) -- cgit v1.2.3