[Python-checkins] r74116 - sandbox/trunk/2to3/lib2to3/tests/test_refactor.py

benjamin.peterson python-checkins at python.org
Mon Jul 20 19:22:35 CEST 2009


Author: benjamin.peterson
Date: Mon Jul 20 19:22:35 2009
New Revision: 74116

Log:
placate windows

Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_refactor.py

Modified: sandbox/trunk/2to3/lib2to3/tests/test_refactor.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_refactor.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_refactor.py	Mon Jul 20 19:22:35 2009
@@ -215,7 +215,7 @@
         expected = ["hi.py"]
         check(tree, expected)
         tree = ["hi.py",
-                "a_dir/stuff.py"]
+                os.path.join("a_dir", "stuff.py")]
         check(tree, tree)
 
     def test_file_encoding(self):


More information about the Python-checkins mailing list