Skip to content

Commit a4732c4

Browse files
committed
tests: Update number of lines expected from show
1 parent 970ff8f commit a4732c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/functional/test_show.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_show(script):
1010
"""
1111
result = script.pip('show', 'pip')
1212
lines = result.stdout.split('\n')
13-
assert len(lines) == 17
13+
assert len(lines) == 18
1414
assert lines[0] == '---', lines[0]
1515
assert 'Name: pip' in lines
1616
assert 'Version: %s' % __version__ in lines
@@ -28,7 +28,7 @@ def test_show_with_files_not_found(script, data):
2828
script.pip('install', '-e', editable)
2929
result = script.pip('show', '-f', 'SetupPyUTF8')
3030
lines = result.stdout.split('\n')
31-
assert len(lines) == 14
31+
assert len(lines) == 15
3232
assert lines[0] == '---', lines[0]
3333
assert 'Name: SetupPyUTF8' in lines
3434
assert 'Version: 0.0.0' in lines

0 commit comments

Comments
 (0)