diff options
| author | Benjamin Peterson <benjamin@python.org> | 2011-12-10 22:55:31 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2011-12-10 22:55:31 (GMT) |
| commit | 8bbe788deb774d066e8d185b1af04af3b4537dfc (patch) | |
| tree | 48f2bacd8db88bcdf73e7056cd58f81215da179a /Lib/test/test_minidom.py | |
| parent | 2122cf717f963c956b4481ca31703bbf8e391397 (diff) | |
| parent | 836e9aab2f3f22faa19f2f90b340fc9b5b37cdcc (diff) | |
| download | cpython-8bbe788deb774d066e8d185b1af04af3b4537dfc.zip cpython-8bbe788deb774d066e8d185b1af04af3b4537dfc.tar.gz cpython-8bbe788deb774d066e8d185b1af04af3b4537dfc.tar.bz2 | |
merge heads
Diffstat (limited to 'Lib/test/test_minidom.py')
| -rw-r--r-- | Lib/test/test_minidom.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class MinidomTest(unittest.TestCase): 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: |
