Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r60781:8ae312cf9330
Date: 2013-01-31 12:14 -0500
http://bitbucket.org/pypy/pypy/changeset/8ae312cf9330/

Log:    fix again

diff --git a/rpython/rlib/test/test_rpath.py b/rpython/rlib/test/test_rpath.py
--- a/rpython/rlib/test/test_rpath.py
+++ b/rpython/rlib/test/test_rpath.py
@@ -6,7 +6,7 @@
 
 def test_rabspath_relative(tmpdir):
     tmpdir.chdir()
-    assert rpath.rabspath('foo') == os.path.realpath(tmpdir.join('foo'))
+    assert rpath.rabspath('foo') == os.path.realpath(str(tmpdir.join('foo')))
 
 @py.test.mark.skipif("IS_WINDOWS")
 def test_rabspath_absolute_posix():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to