summaryrefslogtreecommitdiff
path: root/test/unittest_deprecation.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unittest_deprecation.py')
-rw-r--r--test/unittest_deprecation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unittest_deprecation.py b/test/unittest_deprecation.py
index 7662a23..09ec45a 100644
--- a/test/unittest_deprecation.py
+++ b/test/unittest_deprecation.py
@@ -145,11 +145,11 @@ class RawInputTC(TestCase):
['[logilab.common] argument old of callable some_function has been removed and is '
'deprecated'])
- def test_renamed(self):
+ def test_callable_renamed(self):
def any_func():
pass
- old_func = deprecation.renamed("old_func", any_func)
+ old_func = deprecation.callable_renamed("old_func", any_func)
old_func()
self.assertEqual(self.messages,