We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
show
1 parent 970ff8f commit a4732c4Copy full SHA for a4732c4
tests/functional/test_show.py
@@ -10,7 +10,7 @@ def test_show(script):
10
"""
11
result = script.pip('show', 'pip')
12
lines = result.stdout.split('\n')
13
- assert len(lines) == 17
+ assert len(lines) == 18
14
assert lines[0] == '---', lines[0]
15
assert 'Name: pip' in lines
16
assert 'Version: %s' % __version__ in lines
@@ -28,7 +28,7 @@ def test_show_with_files_not_found(script, data):
28
script.pip('install', '-e', editable)
29
result = script.pip('show', '-f', 'SetupPyUTF8')
30
31
- assert len(lines) == 14
+ assert len(lines) == 15
32
33
assert 'Name: SetupPyUTF8' in lines
34
assert 'Version: 0.0.0' in lines
0 commit comments