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_mounts.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_mounts.py')
-rw-r--r-- | tests/unittests/test_handler/test_handler_mounts.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/unittests/test_handler/test_handler_mounts.py b/tests/unittests/test_handler/test_handler_mounts.py index 7bcefa0a..05ac183e 100644 --- a/tests/unittests/test_handler/test_handler_mounts.py +++ b/tests/unittests/test_handler/test_handler_mounts.py @@ -1,16 +1,12 @@ # This file is part of cloud-init. See LICENSE file for license information. import os.path +from unittest import mock from cloudinit.config import cc_mounts from cloudinit.tests import helpers as test_helpers -try: - from unittest import mock -except ImportError: - import mock - class TestSanitizeDevname(test_helpers.FilesystemMockingTestCase): |