Fix uri conversion

Signed-off-by: Dan Ryan <dan.ryan@xyleminc.com>
This commit is contained in:
Dan Ryan
2018-06-13 19:41:15 -04:00
parent bca3e1fa61
commit 6a0a34b415
+1 -1
View File
@@ -53,7 +53,7 @@ def test_file_urls_work(PipenvInstance, pip_src_dir):
whl = whl.resolve()
except OSError:
whl = whl.absolute()
wheel_url = whl.as_url()
wheel_url = whl.as_uri()
c = p.pipenv('install "{0}"'.format(wheel_url))
assert c.return_code == 0
assert 'six' in p.pipfile['packages']