summaryrefslogtreecommitdiff
path: root/tests/unittests/test_ec2_util.py
diff options
context:
space:
mode:
authorScott Moser <smoser@brickies.net>2017-01-24 11:37:08 -0500
committerScott Moser <smoser@brickies.net>2017-01-24 15:39:14 -0500
commit8e9e47f2f06b4dcf017149699111e94ba7c1830b (patch)
treecc075e0497d555d41356a178ecfe958b36fa4c42 /tests/unittests/test_ec2_util.py
parent853df0a0e85002582694b88db886f206f64b23c7 (diff)
downloadvyos-cloud-init-8e9e47f2f06b4dcf017149699111e94ba7c1830b.tar.gz
vyos-cloud-init-8e9e47f2f06b4dcf017149699111e94ba7c1830b.zip
tests: No longer monkey patch httpretty for python 3.4.2
No shipping ubuntu has a python 3.4 that is less than 3.4.2. Remove this workaround to avoid unnecessary complexity. This reverts 04a60cf949.
Diffstat (limited to 'tests/unittests/test_ec2_util.py')
-rw-r--r--tests/unittests/test_ec2_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/test_ec2_util.py b/tests/unittests/test_ec2_util.py
index 71c2009f..65fdb519 100644
--- a/tests/unittests/test_ec2_util.py
+++ b/tests/unittests/test_ec2_util.py
@@ -1,12 +1,12 @@
# This file is part of cloud-init. See LICENSE file for license information.
+import httpretty as hp
+
from . import helpers
from cloudinit import ec2_utils as eu
from cloudinit import url_helper as uh
-hp = helpers.import_httpretty()
-
class TestEc2Util(helpers.HttprettyTestCase):
VERSION = 'latest'