use contoml

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-15 12:29:01 -04:00
parent b3f0b628a1
commit ba2aed74b1
+2 -2
View File
@@ -4,7 +4,7 @@ import shutil
from mock import patch, Mock, PropertyMock
import delegator
import toml
from pipenv.patched import contoml
from pipenv.cli import (
ensure_proper_casing,
@@ -200,7 +200,7 @@ class TestPipenvWindows():
"PyTEST = \"*\"\n")
# Load test Pipfile.
p = toml.loads(pfile_test)
p = contoml.loads(pfile_test)
assert 'DjAnGO' in p['packages']
assert 'PyTEST' in p['dev-packages']