summaryrefslogtreecommitdiffstats
path: root/ipalib/tests/tstutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/tests/tstutil.py')
-rw-r--r--ipalib/tests/tstutil.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/tests/tstutil.py b/ipalib/tests/tstutil.py
index 7586d08c5..743716a08 100644
--- a/ipalib/tests/tstutil.py
+++ b/ipalib/tests/tstutil.py
@@ -55,7 +55,7 @@ def raises(exception, callback, *args, **kw):
def getitem(obj, key):
"""
- Works like getattr but for dictionary interface. Uses this in combination
+ Works like getattr but for dictionary interface. Use this in combination
with raises() to test that, for example, KeyError is raised.
"""
return obj[key]
@@ -63,7 +63,7 @@ def getitem(obj, key):
def setitem(obj, key, value):
"""
- Works like setattr but for dictionary interface. Uses this in combination
+ Works like setattr but for dictionary interface. Use this in combination
with raises() to test that, for example, TypeError is raised.
"""
obj[key] = value
@@ -71,7 +71,7 @@ def setitem(obj, key, value):
def delitem(obj, key):
"""
- Works like delattr but for dictionary interface. Uses this in combination
+ Works like delattr but for dictionary interface. Use this in combination
with raises() to test that, for example, TypeError is raised.
"""
del obj[key]