diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-19 10:56:53 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-19 10:56:53 -0500 |
| commit | fe6891c949de75626396167a4aae78b276ed0223 (patch) | |
| tree | 25ab12a4cae7382af458d51dede3dd64b9eb99f0 | |
| parent | 335aba6f265f694612e610c6acceb34c182a94c5 (diff) | |
| download | python-setuptools-git-fe6891c949de75626396167a4aae78b276ed0223.tar.gz | |
Fix typo, correcting failures on late Pythons when mock is not already installed.
| -rw-r--r-- | pkg_resources/tests/test_markers.py | 2 |
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 |
