diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-23 18:28:49 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-23 18:28:49 +0200 |
commit | 6187ce264a39cd72285f6cb73cc746a04268c253 (patch) | |
tree | 5ade7fac6b8418b2300fa95347f661a1332a6821 /smoketest/scripts/cli | |
parent | 46ecdd015185263c42180a29555101b758399148 (diff) | |
download | vyos-1x-6187ce264a39cd72285f6cb73cc746a04268c253.tar.gz vyos-1x-6187ce264a39cd72285f6cb73cc746a04268c253.zip |
smoketest: T3850: use as complicated as possible public-key name
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_system_login.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_system_login.py b/smoketest/scripts/cli/test_system_login.py index af3a5851c..0addd630e 100755 --- a/smoketest/scripts/cli/test_system_login.py +++ b/smoketest/scripts/cli/test_system_login.py @@ -94,7 +94,7 @@ class TestSystemLogin(VyOSUnitTestSHIM.TestCase): def test_system_user_ssh_key(self): ssh_user = 'ssh-test_user' - public_keys = 'vyos' + public_keys = 'vyos_test@domain-foo.com' type = 'ssh-rsa' self.cli_set(base_path + ['user', ssh_user, 'authentication', 'public-keys', public_keys, 'key', ssh_pubkey.replace('\n','')]) |