We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82f096b commit b3d03b4Copy full SHA for b3d03b4
1 file changed
src/hyperlink/test/test_url.py
@@ -1148,7 +1148,8 @@ def test_rooted_with_port_but_no_host(self):
1148
"""
1149
directly_constructed = URL(scheme='udp', port=4900, rooted=False)
1150
directly_constructed_implict = URL(scheme='udp', port=4900)
1151
- directly_constructed_rooted = URL(scheme=u'udp', port=4900, rooted=True)
+ directly_constructed_rooted = URL(scheme=u'udp', port=4900,
1152
+ rooted=True)
1153
self.assertEqual(directly_constructed.rooted, True)
1154
self.assertEqual(directly_constructed_implict.rooted, True)
1155
self.assertEqual(directly_constructed_rooted.rooted, True)
0 commit comments