Author: Philip Jenvey <[email protected]>
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"
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to