commit | 313b2ad1a8fa518467a2ea9b0ac4cc6d483a191a | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Sat Dec 10 21:14:53 2011 +0100 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Sat Dec 10 21:14:53 2011 +0100 |
tree | 3da24bcb630c2c07d1977da000f64529c3d9603d | |
parent | 0a9dd2f11db2a52fbc2cabaf0755aa33ad9372e5 [diff] [blame] |
Fix imports in xml.dom.
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index 392e40e..752a840 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py
@@ -47,7 +47,7 @@ def checkWholeText(self, node, s): t = node.wholeText - self.confirm(t == s, "looking for %s, found %s" % (repr(s), repr(t))) + self.confirm(t == s, "looking for %r, found %r" % (s, t)) def testParseFromFile(self): with open(tstfile) as file: