summaryrefslogtreecommitdiff
path: root/tests/test_events.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-15 02:42:09 -0500
committerMichael Merickel <michael@merickel.org>2018-10-15 09:24:07 -0500
commit10ddb6f08592c2740b966e98a6f98a5b83af1896 (patch)
tree2e90443b3d8503ac722aa22f52f18f5108498560 /tests/test_events.py
parent4d838f06d0e6d27e34b766fc5c34a8283ff31b38 (diff)
downloadpyramid-10ddb6f08592c2740b966e98a6f98a5b83af1896.tar.gz
pyramid-10ddb6f08592c2740b966e98a6f98a5b83af1896.tar.bz2
pyramid-10ddb6f08592c2740b966e98a6f98a5b83af1896.zip
fix lint on tests
Diffstat (limited to 'tests/test_events.py')
-rw-r--r--tests/test_events.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test_events.py b/tests/test_events.py
index a08cab637..25ed5fc0d 100644
--- a/tests/test_events.py
+++ b/tests/test_events.py
@@ -196,7 +196,7 @@ class TestSubscriber(unittest.TestCase):
dec = self._makeOne(IFoo)
- def foo():
+ def foo(): # pragma: no cover
pass
config = DummyConfigurator()
@@ -216,7 +216,7 @@ class TestSubscriber(unittest.TestCase):
dec = self._makeOne(IFoo, IBar)
- def foo():
+ def foo(): # pragma: no cover
pass
config = DummyConfigurator()
@@ -230,7 +230,7 @@ class TestSubscriber(unittest.TestCase):
dec = self._makeOne()
- def foo():
+ def foo(): # pragma: no cover
pass
config = DummyConfigurator()
@@ -250,7 +250,7 @@ class TestSubscriber(unittest.TestCase):
dec = self._makeOne([IFoo, IBar])
- def foo():
+ def foo(): # pragma: no cover
pass
config = DummyConfigurator()
@@ -264,7 +264,7 @@ class TestSubscriber(unittest.TestCase):
dummy_venusian = DummyVenusian()
dec.venusian = dummy_venusian
- def foo():
+ def foo(): # pragma: no cover
pass
dec(foo)
@@ -277,7 +277,7 @@ class TestSubscriber(unittest.TestCase):
dummy_venusian = DummyVenusian()
dec.venusian = dummy_venusian
- def foo():
+ def foo(): # pragma: no cover
pass
dec(foo)
@@ -290,7 +290,7 @@ class TestSubscriber(unittest.TestCase):
dec = self._makeOne(a=1)
- def foo():
+ def foo(): # pragma: no cover
pass
config = DummyConfigurator()