From 6477b43d9b6cd66026326f84e93e1ba865071621 Mon Sep 17 00:00:00 2001 From: hpk Date: Wed, 7 Feb 2007 21:52:09 +0100 Subject: [PATCH] [svn r38119] avoid clashing the sample* prefix which is used by a listdir() test --HG-- branch : trunk --- py/path/testing/fscommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/path/testing/fscommon.py b/py/path/testing/fscommon.py index c403b6ae9..b9fad8d5f 100644 --- a/py/path/testing/fscommon.py +++ b/py/path/testing/fscommon.py @@ -203,7 +203,7 @@ class CommonFSTests(common.CommonPathTests): 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()