Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Dec 4, 2016
1 parent dd45c52 commit 501049f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def test_fsn2uri():
assert fsn2uri(u"C:\\ö ä%") == "file:///C:/%C3%B6%20%C3%A4%25"
assert (fsn2uri(u"C:\\foo-\u1234") ==
"file:///C:/foo-%E1%88%B4")
assert isinstance(fsn2uri(u"C:\\foo-\u1234"), str)
assert isinstance(fsn2uri(u"C:\\foo-\u1234"), text_type)
assert fsn2uri(u"\\\serv\\share\\") == "file://serv/share/"
assert fsn2uri(u"\\\serv\\\u1234\\") == "file://serv/%E1%88%B4/"
assert \
Expand Down

0 comments on commit 501049f

Please sign in to comment.