From 6a0a34b4158639bada69dcea54b70b3c1cd0b96d Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Wed, 13 Jun 2018 19:41:15 -0400 Subject: [PATCH] Fix uri conversion Signed-off-by: Dan Ryan --- tests/integration/test_install_uri.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_install_uri.py b/tests/integration/test_install_uri.py index 1da6263f..301dbc83 100644 --- a/tests/integration/test_install_uri.py +++ b/tests/integration/test_install_uri.py @@ -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']