(original) (raw)

changeset: 102342:2d6e6600c210 branch: 2.7 parent: 102333:130d97217e36 user: Martin Panter vadmium+py@gmail.com date: Thu Jul 14 01:31:46 2016 +0000 files: Lib/test/test_pyexpat.py Misc/NEWS description: Issue #27369: Don’t test error message detail that changed in Expat 2.2.0 diff -r 130d97217e36 -r 2d6e6600c210 Lib/test/test_pyexpat.py --- a/Lib/test/test_pyexpat.py Tue Jul 12 15:46:57 2016 +0300 +++ b/Lib/test/test_pyexpat.py Thu Jul 14 01:31:46 2016 +0000 @@ -610,11 +610,9 @@ def test2(self): xml = "\r\n" parser = expat.ParserCreate() - try: + err_pattern = r'XML declaration not well-formed: line 1, column \d+' + with self.assertRaisesRegexp(expat.ExpatError, err_pattern): parser.Parse(xml, True) - self.fail() - except expat.ExpatError as e: - self.assertEqual(str(e), 'XML declaration not well-formed: line 1, column 14') class ForeignDTDTests(unittest.TestCase): """ diff -r 130d97217e36 -r 2d6e6600c210 Misc/NEWS --- a/Misc/NEWS Tue Jul 12 15:46:57 2016 +0300 +++ b/Misc/NEWS Thu Jul 14 01:31:46 2016 +0000 @@ -62,6 +62,12 @@ resulting links to use lowercase. Patch by Sean Rodman, test by Kaushik Nadikuditi. +Tests +----- + +- Issue #27369: In test_pyexpat, avoid testing an error message detail that + changed in Expat 2.2.0. + What's New in Python 2.7.12? ============================ /vadmium+py@gmail.com