summaryrefslogtreecommitdiff
path: root/tests/test_config/test_adapters.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_config/test_adapters.py')
-rw-r--r--tests/test_config/test_adapters.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_config/test_adapters.py b/tests/test_config/test_adapters.py
index 6237995d0..d871e8825 100644
--- a/tests/test_config/test_adapters.py
+++ b/tests/test_config/test_adapters.py
@@ -177,7 +177,7 @@ class AdaptersConfiguratorMixinTests(unittest.TestCase):
L = []
- def subscriber(event):
+ def subscriber(event): # pragma: no cover
L.append(event)
config = self._makeOne(autocommit=True)
@@ -206,7 +206,7 @@ class AdaptersConfiguratorMixinTests(unittest.TestCase):
L = []
- def subscriber(event):
+ def subscriber(event): # pragma: no cover
L.append(event)
config = self._makeOne(autocommit=True)
@@ -394,7 +394,7 @@ class Test_eventonly(unittest.TestCase):
return eventonly(callee)
def test_defaults(self):
- def acallable(event, a=1, b=2):
+ def acallable(event, a=1, b=2): # pragma: no cover
pass
self.assertTrue(self._callFUT(acallable))