From 210495992b6ea974895bdb65c213336683eb01b0 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Wed, 15 May 2019 21:36:06 -0400 Subject: [PATCH] Fix marker formatting in keep outdated test Signed-off-by: Dan Ryan --- tests/integration/test_lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index 29cc0cc4..b783000b 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -103,7 +103,7 @@ def test_keep_outdated_doesnt_remove_lockfile_entries(PipenvInstance, pypi): p._pipfile.add("six", "*") p.pipenv("lock --keep-outdated") assert "colorama" in p.lockfile["default"] - assert p.lockfile["default"]["colorama"]["markers"] == "os_name=='FakeOS'" + assert p.lockfile["default"]["colorama"]["markers"] == "os_name == 'FakeOS'" @pytest.mark.lock