From 7afa528c0fbbb4cfd3f8054290b33ece5e05d022 Mon Sep 17 00:00:00 2001 From: Jeff Tratner Date: Wed, 28 Mar 2018 23:53:38 -0700 Subject: [PATCH] Fix small test case typo --- tests/test_pipenv.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_pipenv.py b/tests/test_pipenv.py index 0865556f..37461fbc 100644 --- a/tests/test_pipenv.py +++ b/tests/test_pipenv.py @@ -1167,11 +1167,10 @@ flask = "==0.12.2" def test_scripts_basic(self): with PipenvInstance(chdir=True) as p: with open(p.pipfile_path, 'w') as f: - f.write(""" + f.write(r""" [scripts] -printfoo = "python -c print('foo')" +printfoo = "python -c \"print('foo')\"" """) - c = p.pipenv('install') assert c.return_code == 0