[pypy-commit] pypy py3k: use 3.3's expected results as we already match importlib's err message

pjenvey noreply at buildbot.pypy.org
Fri Jan 25 22:44:29 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r60493:11fdb7f93f1d
Date: 2013-01-25 13:43 -0800
http://bitbucket.org/pypy/pypy/changeset/11fdb7f93f1d/

Log:	use 3.3's expected results as we already match importlib's err
	message

diff --git a/lib-python/3.2/test/test_pydoc.py b/lib-python/3.2/test/test_pydoc.py
--- a/lib-python/3.2/test/test_pydoc.py
+++ b/lib-python/3.2/test/test_pydoc.py
@@ -392,11 +392,10 @@
         modname = 'testmod_xyzzy'
         testpairs = (
             ('i_am_not_here', 'i_am_not_here'),
-            ('test.i_am_not_here_either', 'i_am_not_here_either'),
-            ('test.i_am_not_here.neither_am_i', 'i_am_not_here.neither_am_i'),
-            ('i_am_not_here.{}'.format(modname),
-             'i_am_not_here.{}'.format(modname)),
-            ('test.{}'.format(modname), modname),
+            ('test.i_am_not_here_either', 'test.i_am_not_here_either'),
+            ('test.i_am_not_here.neither_am_i', 'test.i_am_not_here'),
+            ('i_am_not_here.{}'.format(modname), 'i_am_not_here'),
+            ('test.{}'.format(modname), 'test.{}'.format(modname)),
             )
 
         sourcefn = os.path.join(TESTFN, modname) + os.extsep + "py"


More information about the pypy-commit mailing list