summaryrefslogtreecommitdiff
path: root/tests/unittests
diff options
context:
space:
mode:
authorScott Moser <smoser@brickies.net>2020-10-21 12:11:06 -0400
committerGitHub <noreply@github.com>2020-10-21 12:11:06 -0400
commit93cebe009d116230850c770227e9ead5c490c0d0 (patch)
tree8c9c0818ac73562637b6f76ac4a1efb06943d554 /tests/unittests
parent5f8a2bbc5f26c7abafbc9bd3d1b1b655ffdcc1ae (diff)
downloadvyos-cloud-init-93cebe009d116230850c770227e9ead5c490c0d0.tar.gz
vyos-cloud-init-93cebe009d116230850c770227e9ead5c490c0d0.zip
Drop vestigial update_resolve_conf_file function (#620)
update_resolve_conf_file is no longer used. The last reference to it was removed in c3680475f9c970, which was itself a "remove dead code" commit.
Diffstat (limited to 'tests/unittests')
-rw-r--r--tests/unittests/test_distros/test_resolv.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/unittests/test_distros/test_resolv.py b/tests/unittests/test_distros/test_resolv.py
index 68ea0083..7d940750 100644
--- a/tests/unittests/test_distros/test_resolv.py
+++ b/tests/unittests/test_distros/test_resolv.py
@@ -1,12 +1,10 @@
# This file is part of cloud-init. See LICENSE file for license information.
from cloudinit.distros.parsers import resolv_conf
-from cloudinit.distros import rhel_util
from cloudinit.tests.helpers import TestCase
import re
-import tempfile
BASE_RESOLVE = '''
@@ -24,10 +22,6 @@ class TestResolvHelper(TestCase):
rp_r = str(rp).strip()
self.assertEqual(BASE_RESOLVE, rp_r)
- def test_write_works(self):
- with tempfile.NamedTemporaryFile() as fh:
- rhel_util.update_resolve_conf_file(fh.name, [], [])
-
def test_local_domain(self):
rp = resolv_conf.ResolvConf(BASE_RESOLVE)
self.assertIsNone(rp.local_domain)