summaryrefslogtreecommitdiff
path: root/oslo_utils/tests/test_reflection.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_utils/tests/test_reflection.py')
-rw-r--r--oslo_utils/tests/test_reflection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oslo_utils/tests/test_reflection.py b/oslo_utils/tests/test_reflection.py
index 84ba607..8ca49e9 100644
--- a/oslo_utils/tests/test_reflection.py
+++ b/oslo_utils/tests/test_reflection.py
@@ -88,7 +88,7 @@ class CallableClass(object):
class ClassWithInit(object):
- def __init__(self, k, l):
+ def __init__(self, k, lll):
pass
@@ -287,7 +287,7 @@ class GetCallableArgsTest(test_base.BaseTestCase):
def test_class_constructor(self):
result = reflection.get_callable_args(ClassWithInit)
- self.assertEqual(['k', 'l'], result)
+ self.assertEqual(['k', 'lll'], result)
def test_class_with_call(self):
result = reflection.get_callable_args(CallableClass())