aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-02-19 10:56:53 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-02-19 10:56:53 -0500
commitfe6891c949de75626396167a4aae78b276ed0223 (patch)
tree25ab12a4cae7382af458d51dede3dd64b9eb99f0
parent335aba6f265f694612e610c6acceb34c182a94c5 (diff)
downloadexternal_python_setuptools-fe6891c949de75626396167a4aae78b276ed0223.tar.gz
external_python_setuptools-fe6891c949de75626396167a4aae78b276ed0223.tar.bz2
external_python_setuptools-fe6891c949de75626396167a4aae78b276ed0223.zip
Fix typo, correcting failures on late Pythons when mock is not already installed.
-rw-r--r--pkg_resources/tests/test_markers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/tests/test_markers.py b/pkg_resources/tests/test_markers.py
index 0af3089e..8d451de3 100644
--- a/pkg_resources/tests/test_markers.py
+++ b/pkg_resources/tests/test_markers.py
@@ -1,5 +1,5 @@
try:
- import unitest.mock as mock
+ import unittest.mock as mock
except ImportError:
import mock