Author: mattip <matti.pi...@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')
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to