Commit 7ce71f64 authored by Senthil Kumaran's avatar Senthil Kumaran

change the redundant svn scheme urljoin test case to svn+ssh scheme.

parent 56ee6d18
...@@ -372,7 +372,7 @@ class UrlParseTestCase(unittest.TestCase): ...@@ -372,7 +372,7 @@ class UrlParseTestCase(unittest.TestCase):
self.checkJoin('', 'http://a/b/c/g?y/./x','http://a/b/c/g?y/./x') self.checkJoin('', 'http://a/b/c/g?y/./x','http://a/b/c/g?y/./x')
self.checkJoin('', 'http://a/./g', 'http://a/./g') self.checkJoin('', 'http://a/./g', 'http://a/./g')
self.checkJoin('svn://pathtorepo/dir1', 'dir2', 'svn://pathtorepo/dir2') self.checkJoin('svn://pathtorepo/dir1', 'dir2', 'svn://pathtorepo/dir2')
self.checkJoin('svn://pathtorepo/dir1', 'dir2', 'svn://pathtorepo/dir2') self.checkJoin('svn+ssh://pathtorepo/dir1', 'dir2', 'svn+ssh://pathtorepo/dir2')
def test_RFC2732(self): def test_RFC2732(self):
str_cases = [ str_cases = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment