[pypy-commit] pypy default: typo

mattip noreply at buildbot.pypy.org
Wed May 14 22:07:51 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r71518:3920cce43114
Date: 2014-05-14 22:45 +0300
http://bitbucket.org/pypy/pypy/changeset/3920cce43114/

Log:	typo

diff --git a/rpython/translator/c/test/test_extfunc.py b/rpython/translator/c/test/test_extfunc.py
--- a/rpython/translator/c/test/test_extfunc.py
+++ b/rpython/translator/c/test/test_extfunc.py
@@ -298,7 +298,7 @@
         return os.getcwd()
     f1 = compile(does_stuff, [str])
     if os.name == 'nt':
-        assert f1(os.environment['TEMP']) == os.path.realpath(os.environment['TEMP'])
+        assert f1(os.environ['TEMP']) == os.path.realpath(os.environ['TEMP'])
     else:    
         assert f1('/tmp') == os.path.realpath('/tmp')
 


More information about the pypy-commit mailing list