You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch seems to help (but I have no idea whether it is a good way):
---
tests/test_furl.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/tests/test_furl.py+++ b/tests/test_furl.py@@ -1637,7 +1637,7 @@ class TestFurl(unittest.TestCase):
# of a netloc, even if the netloc is empty.
f = furl.furl('////path')
assert f.netloc == '' and str(f.path) == '//path'
- assert f.url == '////path'+ assert f.url in ('//////path', '////path')
# TODO(grun): Test more odd URLs.
With the current updates
tests/test_furl.py::TestFurl::test_odd_urls
started to fail:Complete build log showing all packages used and steps taken to reproduce.
The text was updated successfully, but these errors were encountered: