diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-29 17:54:16 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-29 17:54:16 +0100 |
commit | b6086681007ce61ecbc9a2f5a514dbcfb956f49a (patch) | |
tree | 2e63ec5dee606bd20f2a0a1e88c15c4149cee8dd /smoketest/scripts/cli | |
parent | 3169f1270fe8217fe57c9301e48b550539f14b77 (diff) | |
download | vyos-1x-b6086681007ce61ecbc9a2f5a514dbcfb956f49a.tar.gz vyos-1x-b6086681007ce61ecbc9a2f5a514dbcfb956f49a.zip |
smoketest: dhcp-relay: T3095: remove non referenced function from unittest
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_service_dhcp-relay.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/smoketest/scripts/cli/test_service_dhcp-relay.py b/smoketest/scripts/cli/test_service_dhcp-relay.py index d56f6aa16..4b020db72 100755 --- a/smoketest/scripts/cli/test_service_dhcp-relay.py +++ b/smoketest/scripts/cli/test_service_dhcp-relay.py @@ -29,17 +29,9 @@ PROCESS_NAME = 'dhcrelay' RELAY_CONF = '/run/dhcp-relay/dhcrelay.conf' base_path = ['service', 'dhcp-relay'] -def get_config_value(key): - tmp = read_file(SSHD_CONF) - tmp = re.findall(f'\n?{key}\s+(.*)', tmp) - return tmp - class TestServiceDHCPRelay(unittest.TestCase): def setUp(self): self.session = ConfigSession(os.getpid()) - # ensure we can also run this test on a live system - so lets clean - # out the current configuration :) - self.session.delete(base_path) def tearDown(self): self.session.delete(base_path) |