Fix small test case typo

This commit is contained in:
Jeff Tratner
2018-03-28 23:53:38 -07:00
parent b0445a2c0b
commit 7afa528c0f
+2 -3
View File
@@ -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