summaryrefslogtreecommitdiff
path: root/fs/tests/__init__.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-15 12:30:43 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-15 12:30:43 +0000
commit4b2f35152cd16af3a9cc076e3179607a3439e8b7 (patch)
treea1a026c05f4bf495f10f5497a69b090556795cf1 /fs/tests/__init__.py
parentaa592ac75e0bc6c934f766457d7a66fc8c0b1b2f (diff)
downloadpyfilesystem-rfk-ideas.tar.gz
remove extraneous print statementsrfk-ideas
git-svn-id: http://pyfilesystem.googlecode.com/svn/branches/rfk-ideas@172 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/tests/__init__.py')
-rw-r--r--fs/tests/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/tests/__init__.py b/fs/tests/__init__.py
index bcdc6dd..61cd2c2 100644
--- a/fs/tests/__init__.py
+++ b/fs/tests/__init__.py
@@ -262,11 +262,9 @@ class FSTestCases:
self.assert_(not check("a"))
self.fs.makedir("a")
- print self.fs.listdir("a")
self.assertRaises(DestinationExistsError,self.fs.movedir,"copy of a","a")
self.fs.movedir("copy of a","a",overwrite=True)
self.assert_(not check("copy of a"))
- print self.fs.listdir("a")
self.assert_(check("a/1.txt"))
self.assert_(check("a/2.txt"))
self.assert_(check("a/3.txt"))