From 8a25696528a62d60d64f663446bd97ed6b9e3744 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Thu, 3 May 2018 08:38:25 -0700 Subject: [PATCH] Revert "Update newline check" This reverts commit 415566f5d6d1e47be4ab327d977129e3bca3f771. --- tests/integration/test_project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_project.py b/tests/integration/test_project.py index 464a40a9..eb8f195a 100644 --- a/tests/integration/test_project.py +++ b/tests/integration/test_project.py @@ -83,14 +83,14 @@ six = {{version = "*", index = "pypi"}} def test_maintain_file_line_endings(PipenvInstance, pypi, newlines, target): with PipenvInstance(pypi=pypi, chdir=True) as p: path = getattr(p, target) - c = p.pipenv('install six') + c = p.pipenv('install') assert c.return_code == 0 with io.open(path) as f: contents = f.read() written_newlines = f.newlines - assert written_newlines == u'\n' + assert f.newlines == u'\n' if target == 'lockfile_path': project = Project() project._lockfile_newlines = newlines