summaryrefslogtreecommitdiffstats
path: root/ipalib/tests/test_plugable.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/tests/test_plugable.py')
-rw-r--r--ipalib/tests/test_plugable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/tests/test_plugable.py b/ipalib/tests/test_plugable.py
index 141b2b2b..ddb8fed0 100644
--- a/ipalib/tests/test_plugable.py
+++ b/ipalib/tests/test_plugable.py
@@ -380,7 +380,7 @@ def test_check_name():
'60nine',
]
for name in okay:
- f(name)
+ assert name is f(name)
for name in nope:
raises(errors.NameSpaceError, f, name)
for name in okay: