diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-01-23 16:32:01 -0500 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2020-01-23 14:32:01 -0700 |
commit | 6b157aa60a10fa74374287f0ec0313255e0462b4 (patch) | |
tree | 8d2e89cdde2cf3ca1450f7fd14f386639f838dc2 /tests/unittests/test_handler/test_handler_spacewalk.py | |
parent | 6603706eec1c39d9d591c8ffa0ef7171b74d84d6 (diff) | |
download | vyos-cloud-init-6b157aa60a10fa74374287f0ec0313255e0462b4.tar.gz vyos-cloud-init-6b157aa60a10fa74374287f0ec0313255e0462b4.zip |
cloudinit: remove ImportError handling for mock imports (#182)
We only run on Python 3 now, so we can unambiguously expect
unittest.mock to exist.
Diffstat (limited to 'tests/unittests/test_handler/test_handler_spacewalk.py')
-rw-r--r-- | tests/unittests/test_handler/test_handler_spacewalk.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/unittests/test_handler/test_handler_spacewalk.py b/tests/unittests/test_handler/test_handler_spacewalk.py index ddbf4a79..410e6f77 100644 --- a/tests/unittests/test_handler/test_handler_spacewalk.py +++ b/tests/unittests/test_handler/test_handler_spacewalk.py @@ -6,11 +6,7 @@ from cloudinit import util from cloudinit.tests import helpers import logging - -try: - from unittest import mock -except ImportError: - import mock +from unittest import mock LOG = logging.getLogger(__name__) |