]> granicus.if.org Git - python/commitdiff
#11963: fix Windows buildbots.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 10 Mar 2013 01:25:45 +0000 (03:25 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 10 Mar 2013 01:25:45 +0000 (03:25 +0200)
Lib/test/test_parser.py

index face39af3be87bf4d8894dc1cb2757c91306f5fc..b39d37badd31526b642bc34d6a15ff032fa2a837 100644 (file)
@@ -611,7 +611,8 @@ class ParserStackLimitTestCase(unittest.TestCase):
         rc, out, err = assert_python_failure('-c', e)
         # parsing the expression will result in an error message
         # followed by a MemoryError (see #11963)
-        self.assertEqual(err, b's_push: parser stack overflow\nMemoryError')
+        self.assertIn(b's_push: parser stack overflow', err)
+        self.assertIn(b'MemoryError', err)
 
 class STObjectTestCase(unittest.TestCase):
     """Test operations on ST objects themselves"""