summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-16 13:12:59 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-16 13:12:59 +0000
commit857426a3cc9c2b2b53837d62faca7a54905ae359 (patch)
treed59ca685ebed62623865c75a02758f274b3b0b19
parent761e001c744ce1343cd7b4edf2a7a53ad7c233b6 (diff)
downloadpyfilesystem-857426a3cc9c2b2b53837d62faca7a54905ae359.tar.gz
Corrected typo
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@73 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/tests.py b/fs/tests.py
index 06b7ea0..e0bf889 100644
--- a/fs/tests.py
+++ b/fs/tests.py
@@ -25,7 +25,7 @@ class TestHelpers(unittest.TestCase):
for path, result in tests:
self.assertEqual(fs.normpath(path), result)
- def test_pathjon(self):
+ def test_pathjoin(self):
tests = [ ("", "a", "a"),
("a", "a", "a/a"),
("a/b", "../c", "a/c"),