diff options
| author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2015-01-15 23:25:04 +0100 |
|---|---|---|
| committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2015-01-15 23:25:04 +0100 |
| commit | cde1eb84bd1813ff4425fe6f05cbdeba8e410c13 (patch) | |
| tree | c5d0db0cf20a916f3c065a3832a813a545c7e1af /setuptools/tests/test_easy_install.py | |
| parent | 72d5cc0b9ea095437bf2796298dd3658624c081e (diff) | |
| download | python-setuptools-git-cde1eb84bd1813ff4425fe6f05cbdeba8e410c13.tar.gz | |
Use unittest.mock from standard library instead of external mock with Python >=3.3.
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
| -rw-r--r-- | setuptools/tests/test_easy_install.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 72b040e1..689860c3 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -15,7 +15,10 @@ import logging import itertools import pytest -import mock +try: + from unittest import mock +except ImportError: + import mock from setuptools import sandbox from setuptools import compat |
