@@ -581,7 +581,7 @@ def test_urljoins(self):
581581 self .checkJoin ('a' , 'b' , 'b' )
582582
583583 # Test with empty (but defined) components.
584- self .checkJoin (RFC1808_BASE , '' , 'http://a/b/c/d;p?q#f ' )
584+ self .checkJoin (RFC1808_BASE , '' , 'http://a/b/c/d;p?q' )
585585 self .checkJoin (RFC1808_BASE , '#' , 'http://a/b/c/d;p?q#' , relroundtrip = False )
586586 self .checkJoin (RFC1808_BASE , '#z' , 'http://a/b/c/d;p?q#z' )
587587 self .checkJoin (RFC1808_BASE , '?' , 'http://a/b/c/d;p?' , relroundtrip = False )
@@ -592,7 +592,7 @@ def test_urljoins(self):
592592 self .checkJoin (RFC1808_BASE , ';#z' , 'http://a/b/c/;#z' )
593593 self .checkJoin (RFC1808_BASE , ';x' , 'http://a/b/c/;x' )
594594 self .checkJoin (RFC1808_BASE , '/w' , 'http://a/w' )
595- self .checkJoin (RFC1808_BASE , '//' , 'http://a/b/c/d;p?q#f ' )
595+ self .checkJoin (RFC1808_BASE , '//' , 'http://a/b/c/d;p?q' )
596596 self .checkJoin (RFC1808_BASE , '//#z' , 'http://a/b/c/d;p?q#z' )
597597 self .checkJoin (RFC1808_BASE , '//?y' , 'http://a/b/c/d;p?y' )
598598 self .checkJoin (RFC1808_BASE , '//;x' , 'http://;x' )
@@ -601,7 +601,7 @@ def test_urljoins(self):
601601 # For backward compatibility with RFC1630, the scheme name is allowed
602602 # to be present in a relative reference if it is the same as the base
603603 # URI scheme.
604- self .checkJoin (RFC1808_BASE , 'http:' , 'http://a/b/c/d;p?q#f ' )
604+ self .checkJoin (RFC1808_BASE , 'http:' , 'http://a/b/c/d;p?q' )
605605 self .checkJoin (RFC1808_BASE , 'http:#' , 'http://a/b/c/d;p?q#' , relroundtrip = False )
606606 self .checkJoin (RFC1808_BASE , 'http:#z' , 'http://a/b/c/d;p?q#z' )
607607 self .checkJoin (RFC1808_BASE , 'http:?' , 'http://a/b/c/d;p?' , relroundtrip = False )
@@ -612,7 +612,7 @@ def test_urljoins(self):
612612 self .checkJoin (RFC1808_BASE , 'http:;#z' , 'http://a/b/c/;#z' )
613613 self .checkJoin (RFC1808_BASE , 'http:;x' , 'http://a/b/c/;x' )
614614 self .checkJoin (RFC1808_BASE , 'http:/w' , 'http://a/w' )
615- self .checkJoin (RFC1808_BASE , 'http://' , 'http://a/b/c/d;p?q#f ' )
615+ self .checkJoin (RFC1808_BASE , 'http://' , 'http://a/b/c/d;p?q' )
616616 self .checkJoin (RFC1808_BASE , 'http://#z' , 'http://a/b/c/d;p?q#z' )
617617 self .checkJoin (RFC1808_BASE , 'http://?y' , 'http://a/b/c/d;p?y' )
618618 self .checkJoin (RFC1808_BASE , 'http://;x' , 'http://;x' )
0 commit comments