Skip to content

Commit b3d03b4

Browse files
committed
<79
1 parent 82f096b commit b3d03b4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/hyperlink/test/test_url.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,8 @@ def test_rooted_with_port_but_no_host(self):
11481148
"""
11491149
directly_constructed = URL(scheme='udp', port=4900, rooted=False)
11501150
directly_constructed_implict = URL(scheme='udp', port=4900)
1151-
directly_constructed_rooted = URL(scheme=u'udp', port=4900, rooted=True)
1151+
directly_constructed_rooted = URL(scheme=u'udp', port=4900,
1152+
rooted=True)
11521153
self.assertEqual(directly_constructed.rooted, True)
11531154
self.assertEqual(directly_constructed_implict.rooted, True)
11541155
self.assertEqual(directly_constructed_rooted.rooted, True)

0 commit comments

Comments
 (0)