summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/tests/test_decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_decorator.py b/pyramid/tests/test_decorator.py
index eb5266235..0a98a512d 100644
--- a/pyramid/tests/test_decorator.py
+++ b/pyramid/tests/test_decorator.py
@@ -16,7 +16,7 @@ class TestReify(unittest.TestCase):
def test___get__noinst(self):
def wrapped(inst):
- return 'a'
+ return 'a' # pragma: no cover
decorator = self._makeOne(wrapped)
result = decorator.__get__(None)
self.assertEqual(result, decorator)