summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2025-12-14 18:58:00 +0100
committerChristian Breunig <christian@breunig.cc>2025-12-14 18:58:00 +0100
commitef13a6319a21c8030301aeebbeabf5148adb994c (patch)
treec7e2fe4293ecfc55606d3020c7f697a178af1109 /smoketest/scripts/cli
parent812eea9a3a20afebc20b374a30ceac7f0d87c9b4 (diff)
downloadvyos-1x-ef13a6319a21c8030301aeebbeabf5148adb994c.tar.gz
vyos-1x-ef13a6319a21c8030301aeebbeabf5148adb994c.zip
ssh: T8098: rename "ciphers" CLI node to "cipher"
Follow VyOS CLI best practices for using singular whenever possible to build a CLI node. As we introduce a new migration 2 -> 3 for SSH we can correct this minor detail.
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-xsmoketest/scripts/cli/test_service_ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_service_ssh.py b/smoketest/scripts/cli/test_service_ssh.py
index 6935464a7..4ef3dd51d 100755
--- a/smoketest/scripts/cli/test_service_ssh.py
+++ b/smoketest/scripts/cli/test_service_ssh.py
@@ -378,7 +378,7 @@ class TestServiceSSH(VyOSUnitTestSHIM.TestCase):
rekey_data = '1024'
for cipher in ciphers:
- self.cli_set(base_path + ['ciphers', cipher])
+ self.cli_set(base_path + ['cipher', cipher])
for host_key in host_key_algs:
self.cli_set(base_path + ['hostkey-algorithm', host_key])
for kex in kexes: