test_url unit test fix
This commit is contained in:
parent
2e6297f834
commit
a459ee34be
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@ class TestURLParsing(unittest.TestCase):
|
||||||
|
|
||||||
def _assert_url(self, url_string, **kwargs):
|
def _assert_url(self, url_string, **kwargs):
|
||||||
url = URL.parse(url_string)
|
url = URL.parse(url_string)
|
||||||
self.assertEqual(url_string, str(url))
|
if url_string.startswith('lbry://'):
|
||||||
|
self.assertEqual(url_string, str(url))
|
||||||
|
else:
|
||||||
|
self.assertEqual(f'lbry://{url_string}', str(url))
|
||||||
present = {}
|
present = {}
|
||||||
for key in kwargs:
|
for key in kwargs:
|
||||||
for segment_name in self.segments:
|
for segment_name in self.segments:
|
||||||
|
|
Loading…
Add table
Reference in a new issue