Skip to content

Commit 6e82da2

Browse files
committed
Fix test to account for name resolution of editable deps
Signed-off-by: Dan Ryan <[email protected]>
1 parent 4768f8c commit 6e82da2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_install_uri.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ def test_install_local_vcs_not_in_lockfile(PipenvInstance, pip_src_dir):
182182
# This is the hash of ./six
183183
assert six_key in p.pipfile['packages']
184184
assert six_key in p.lockfile['default']
185-
# Make sure we didn't put six in the lockfile by accident as a vcs ref
186-
assert 'six' not in p.lockfile['default']
185+
# The hash isn't a hash anymore, its actually the name of the package (we now resolve this)
186+
assert 'six' in p.pipfile['packages']
187187

188188

189189
@pytest.mark.vcs

0 commit comments

Comments
 (0)