chore: fix typo in test_omnienv_no_such_command.py

intall -> install
This commit is contained in:
Ikko Eltociear Ashimine 2023-07-12 01:30:06 +09:00 committed by GitHub
parent 3cd187a3bb
commit 1ff94d65e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ def Popen(mocker):
@pytest.mark.parametrize('script, pyenv_cmd', [
('pyenv globe', 'globe'),
('pyenv intall 3.8.0', 'intall'),
('pyenv install 3.8.0', 'install'),
('pyenv list', 'list'),
])
def test_match(script, pyenv_cmd, output):
@ -49,7 +49,7 @@ def test_not_match(script, output):
@pytest.mark.parametrize('script, pyenv_cmd, result', [
('pyenv globe', 'globe', 'pyenv global'),
('pyenv intall 3.8.0', 'intall', 'pyenv install 3.8.0'),
('pyenv install 3.8.0', 'install', 'pyenv install 3.8.0'),
('pyenv list', 'list', 'pyenv install --list'),
('pyenv remove 3.8.0', 'remove', 'pyenv uninstall 3.8.0'),
])