summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJonathan Hitchcock <jonathan.hitchcock@gmail.com>2012-11-15 17:21:05 +0200
committerJonathan Hitchcock <jonathan.hitchcock@gmail.com>2012-11-15 17:21:05 +0200
commita4d2dd98e3ab13fecda700e859a75e35e53a4ea8 (patch)
treefeb96d96b0ab613537192cd506afbd9a6ab84835 /tests
parent1ee39cd3174b487038b62a3a6a66bac46571775a (diff)
downloadvirtualenv-a4d2dd98e3ab13fecda700e859a75e35e53a4ea8.tar.gz
Fix typos in test names
Diffstat (limited to 'tests')
-rw-r--r--tests/test_virtualenv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_virtualenv.py b/tests/test_virtualenv.py
index 0dd1195..0356a38 100644
--- a/tests/test_virtualenv.py
+++ b/tests/test_virtualenv.py
@@ -26,7 +26,7 @@ def test_resolve_interpreter_with_absolute_path(mock_exists):
@patch('os.path.exists')
-def test_resolve_intepreter_with_nonexistant_interpreter(mock_exists):
+def test_resolve_interpreter_with_nonexistent_interpreter(mock_exists):
"""Should exit when with absolute path if not exists"""
mock_exists.return_value = False
@@ -40,7 +40,7 @@ def test_resolve_intepreter_with_nonexistant_interpreter(mock_exists):
@patch('os.path.exists')
-def test_resolve_intepreter_with_invalid_interpreter(mock_exists):
+def test_resolve_interpreter_with_invalid_interpreter(mock_exists):
"""Should exit when with absolute path if not exists"""
mock_exists.return_value = True
virtualenv.is_executable = Mock(return_value=False)