[py-svn] r38119 - py/trunk/py/path/testing
hpk at codespeak.net
hpk at codespeak.net
Wed Feb 7 21:52:13 CET 2007
Author: hpk
Date: Wed Feb 7 21:52:09 2007
New Revision: 38119
Modified:
py/trunk/py/path/testing/fscommon.py
Log:
avoid clashing the sample* prefix which is used by a listdir() test
Modified: py/trunk/py/path/testing/fscommon.py
==============================================================================
--- py/trunk/py/path/testing/fscommon.py (original)
+++ py/trunk/py/path/testing/fscommon.py Wed Feb 7 21:52:09 2007
@@ -203,7 +203,7 @@
def test_move_file(self):
p = self.root.join('samplefile')
- newp = p.dirpath('samplefile_moved')
+ newp = p.dirpath('moved_samplefile')
p.move(newp)
assert newp.check(file=1)
assert not p.check()
More information about the pytest-commit
mailing list