From 3bfab233f58fe33f689711c07efa1c2f201816d6 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 24 Jun 2018 00:10:36 -0400 Subject: [PATCH] Unicode file data Signed-off-by: Dan Ryan --- tests/integration/test_install_basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_install_basic.py b/tests/integration/test_install_basic.py index 2e5cad67..047c9d78 100644 --- a/tests/integration/test_install_basic.py +++ b/tests/integration/test_install_basic.py @@ -376,7 +376,7 @@ def test_system_and_deploy_work(PipenvInstance, pypi): assert c.return_code == 0 c = p.pipenv('--rm') assert c.return_code == 0 - Path(p.pipfile_path).write_text(""" + Path(p.pipfile_path).write_text(u""" [packages] requests """.strip())