summaryrefslogtreecommitdiff
path: root/fs/tests/test_path.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/tests/test_path.py')
-rw-r--r--fs/tests/test_path.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/tests/test_path.py b/fs/tests/test_path.py
index 35c9185..8152eaa 100644
--- a/fs/tests/test_path.py
+++ b/fs/tests/test_path.py
@@ -57,7 +57,6 @@ class TestPathFunctions(unittest.TestCase):
("/", "") ]
for path, result in tests:
- print path, result
self.assertEqual(fs.relpath(path), result)
def test_abspath(self):
@@ -75,7 +74,6 @@ class TestPathFunctions(unittest.TestCase):
("a/b/c/../d", ["a", "b", "d"]) ]
for path, results in tests:
- print repr(path), results
for path_component, expected in zip(iteratepath(path), results):
self.assertEqual(path_component, expected)