summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ipalib/test_util.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/test_ipalib/test_util.py b/tests/test_ipalib/test_util.py
index 8304d117b..9d19dfb2c 100644
--- a/tests/test_ipalib/test_util.py
+++ b/tests/test_ipalib/test_util.py
@@ -21,17 +21,6 @@
Test the `ipalib.util` module.
"""
-from tests.util import raises
from ipalib import util
-def test_make_repr():
- """
- Test the `ipalib.util.make_repr` function.
- """
- f = util.make_repr
- assert f('my') == 'my()'
- assert f('my', True, u'hello') == "my(True, u'hello')"
- assert f('my', one=1, two='two') == "my(one=1, two='two')"
- assert f('my', None, 3, dog='animal', apple='fruit') == \
- "my(None, 3, apple='fruit', dog='animal')"