diff options
| author | Christian Poessinger <christian@poessinger.com> | 2020-02-26 07:27:52 +0100 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2020-02-26 07:32:26 +0100 | 
| commit | f1beefe681240113c6ec856b01e55dc646f52294 (patch) | |
| tree | a58d4d6051476984a8ac77269363b791717605d2 /scripts/cli/test_service_ssh.py | |
| parent | 74888b22f92abf7f10c8b0baddf815fb5d462897 (diff) | |
| download | vyos-1x-f1beefe681240113c6ec856b01e55dc646f52294.tar.gz vyos-1x-f1beefe681240113c6ec856b01e55dc646f52294.zip  | |
cli: remove superfluous imports (we never use Config())
Every test  hat a Config() instance but it was never referenced. It has been
introduced by simple means of copy/pasting the first nameserver test.
Diffstat (limited to 'scripts/cli/test_service_ssh.py')
| -rwxr-xr-x | scripts/cli/test_service_ssh.py | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/cli/test_service_ssh.py b/scripts/cli/test_service_ssh.py index 43656be9b..f9f0de3db 100755 --- a/scripts/cli/test_service_ssh.py +++ b/scripts/cli/test_service_ssh.py @@ -19,7 +19,6 @@ import os  import unittest  from psutil import process_iter -from vyos.config import Config  from vyos.configsession import ConfigSession, ConfigSessionError  from vyos.util import read_file @@ -35,9 +34,6 @@ def get_config_value(key):  class TestServiceSSH(unittest.TestCase):      def setUp(self):          self.session = ConfigSession(os.getpid()) -        env = self.session.get_session_env() -        self.config = Config(session_env=env) -          # ensure we can also run this test on a live system - so lets clean          # out the current configuration :)          self.session.delete(base_path)  | 
