summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_service_salt.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-15 21:36:53 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-15 21:36:53 +0200
commitc2b54ed6d1dc49a908e77d5fd96a2f4e2e01f887 (patch)
tree6de7fb19f7be9c15c10ba048ecf2f707bc82ea04 /smoketest/scripts/cli/test_service_salt.py
parent0ea1574b922ed30b46717620ce212af7f70ec03f (diff)
downloadvyos-1x-c2b54ed6d1dc49a908e77d5fd96a2f4e2e01f887.tar.gz
vyos-1x-c2b54ed6d1dc49a908e77d5fd96a2f4e2e01f887.zip
salt-minion: T4364: add source-interface CLI option support
Diffstat (limited to 'smoketest/scripts/cli/test_service_salt.py')
-rwxr-xr-xsmoketest/scripts/cli/test_service_salt.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_service_salt.py b/smoketest/scripts/cli/test_service_salt.py
index 8a8ad093c..e42aa00a8 100755
--- a/smoketest/scripts/cli/test_service_salt.py
+++ b/smoketest/scripts/cli/test_service_salt.py
@@ -74,7 +74,7 @@ class TestServiceSALT(VyOSUnitTestSHIM.TestCase):
self.cli_set(base_path + ['hash', hash])
self.cli_set(base_path + ['id', id])
self.cli_set(base_path + ['interval', interval])
- self.cli_set(base_path + ['source_interface', interface])
+ self.cli_set(base_path + ['source-interface', interface])
self.cli_commit()
@@ -86,8 +86,7 @@ class TestServiceSALT(VyOSUnitTestSHIM.TestCase):
self.assertIn(f'hash_type: {hash}', conf)
self.assertIn(f'id: {id}', conf)
self.assertIn(f'mine_interval: {interval}', conf)
- self.assertIn(f'id: {interface}', conf)
- self.assertIn(f'source_interface_name: {id}', conf)
+ self.assertIn(f'source_interface_name: {interface}', conf)
if __name__ == '__main__':
unittest.main(verbosity=2)