summaryrefslogtreecommitdiff
path: root/tests/unittests/test_handler
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2015-02-10 20:51:59 -0500
committerScott Moser <smoser@ubuntu.com>2015-02-10 20:51:59 -0500
commitf5f280cae778bd214b91664f28d9eed997fbcda5 (patch)
tree16fbbba437e1ad9db062552f18bd546168f41e1d /tests/unittests/test_handler
parentf67d459da3d81f3b4c4c4171eaf5940dbc73ea25 (diff)
downloadvyos-cloud-init-f5f280cae778bd214b91664f28d9eed997fbcda5.tar.gz
vyos-cloud-init-f5f280cae778bd214b91664f28d9eed997fbcda5.zip
pep8
Diffstat (limited to 'tests/unittests/test_handler')
-rw-r--r--tests/unittests/test_handler/test_handler_apt_configure.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/unittests/test_handler/test_handler_apt_configure.py b/tests/unittests/test_handler/test_handler_apt_configure.py
index 6bccff11..d8fe9a4f 100644
--- a/tests/unittests/test_handler/test_handler_apt_configure.py
+++ b/tests/unittests/test_handler/test_handler_apt_configure.py
@@ -19,9 +19,6 @@ class TestAptProxyConfig(TestCase):
self.cfile = os.path.join(self.tmp, "config.cfg")
def _search_apt_config(self, contents, ptype, value):
- ## print(
- ## r"acquire::%s::proxy\s+[\"']%s[\"'];\n" % (ptype, value),
- ## contents, "flags=re.IGNORECASE")
return re.search(
r"acquire::%s::proxy\s+[\"']%s[\"'];\n" % (ptype, value),
contents, flags=re.IGNORECASE)