summaryrefslogtreecommitdiff
path: root/tests/test_decorator.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_decorator.py')
-rw-r--r--tests/test_decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_decorator.py b/tests/test_decorator.py
index a9a16ba93..0da8380f8 100644
--- a/tests/test_decorator.py
+++ b/tests/test_decorator.py
@@ -46,7 +46,7 @@ class TestReify(unittest.TestCase):
return 'a' # pragma: no cover
decorator = self._makeOne(wrapped)
- assert not inspect.isfunction(inspect.unwrap(decorator))
+ assert not inspect.isfunction(decorator)
class Dummy: