fix a test that was relying on incorrect non-detection of an editable pkg

This commit is contained in:
Stéphane Bidoul 2015-12-03 20:50:03 +01:00
parent a1622ad0a5
commit 52556056c4
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ def test_uninstall_setuptools_develop_install(script, data):
script.run('python', 'setup.py', 'install',
expect_stderr=True, cwd=pkg_path)
list_result = script.pip('list')
assert "FSPkg (0.1.dev0)" in list_result.stdout
assert "FSPkg (0.1.dev0, " in list_result.stdout
# Uninstall both develop and install
uninstall = script.pip('uninstall', 'FSPkg', '-y')
assert any(filename.endswith('.egg')