Skip to content

Commit 784073e

Browse files
committed
Make test pass after change to urlunsplit()
See python/cpython#85110 for details
1 parent 1390ff0 commit 784073e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/m3u/test_translator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def dumps(items):
2626
("./test.m3u", None, "m3u:test.m3u"),
2727
("foo/../test.m3u", None, "m3u:test.m3u"),
2828
("Test Playlist.m3u", None, "m3u:Test%20Playlist.m3u"),
29-
("test.mp3", "file", "file:///test.mp3"),
29+
("/test.mp3", "file", "file:///test.mp3"),
3030
],
3131
)
3232
def test_path_to_uri(path, scheme, expected):

0 commit comments

Comments
 (0)