Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r62899:8f4d8d845253
Date: 2013-03-30 12:48 -0700
http://bitbucket.org/pypy/pypy/changeset/8f4d8d845253/

Log:    fix

diff --git a/pypy/module/posix/test/test_posix2.py 
b/pypy/module/posix/test/test_posix2.py
--- a/pypy/module/posix/test/test_posix2.py
+++ b/pypy/module/posix/test/test_posix2.py
@@ -885,8 +885,8 @@
             bytes_dir = self.bytes_dir
             if bytes_dir is None:
                 skip("encoding not good enough")
-            dest = bytes_dir + b"%s/file.txt"
-            posix.symlink(bytes_dir + b"%s/somefile", dest)
+            dest = bytes_dir + b"/file.txt"
+            posix.symlink(bytes_dir + b"/somefile", dest)
             with open(dest) as f:
                 data = f.read()
                 assert data == "who cares?"
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to