Fix typo in test_cli.py

begining -> beginning
This commit is contained in:
Ikko Ashimine
2021-08-17 22:20:18 +09:00
committed by GitHub
parent 0e7c1fa97c
commit dd1fdce056
+1 -1
View File
@@ -125,7 +125,7 @@ def test_pipenv_graph_reverse(PipenvInstance):
# openpyxl should be indented
if dep_name == 'openpyxl':
openpyxl_dep = re.search(r'^openpyxl', output, flags=re.MULTILINE)
assert openpyxl_dep is None, f'openpyxl should not appear at begining of lines in {output}'
assert openpyxl_dep is None, f'openpyxl should not appear at beginning of lines in {output}'
assert ' - openpyxl==2.5.4 [requires: et-xmlfile]' in output
else: