diff options
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 11c26dba..d99a146d 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -22,12 +22,6 @@ def test_isXml(): assert utils.isXML(" \n<foo") -def test_del_all(): - d = dict(a=1, b=2, c=3) - utils.del_all(d, ["a", "x", "b"]) - assert d.keys() == ["c"] - - def test_clean_hanging_newline(): s = "foo\n" assert utils.clean_hanging_newline(s) == "foo" |