summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-09-26 19:46:01 +0200
committerGitHub <noreply@github.com>2022-09-26 19:46:01 +0200
commit2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2 (patch)
tree1e706656046ba616de3aa4c269fde3dda37b12d9 /smoketest
parent8f2f6303229814c03494369c51cedd31703406ec (diff)
parent67cf858c8727f7f232aa4648510335f2b2028aaa (diff)
downloadvyos-1x-2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2.tar.gz
vyos-1x-2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2.zip
Merge pull request #1545 from sever-sever/T4557
ids: T4557: Migrate threshold and add new threshold types
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_service_ids.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_service_ids.py b/smoketest/scripts/cli/test_service_ids.py
index d471eeaed..dcf2bcefe 100755
--- a/smoketest/scripts/cli/test_service_ids.py
+++ b/smoketest/scripts/cli/test_service_ids.py
@@ -77,9 +77,9 @@ class TestServiceIDS(VyOSUnitTestSHIM.TestCase):
self.cli_set(base_path + ['listen-interface', tmp])
self.cli_set(base_path + ['direction', 'in'])
- self.cli_set(base_path + ['threshold', 'fps', fps])
- self.cli_set(base_path + ['threshold', 'pps', pps])
- self.cli_set(base_path + ['threshold', 'mbps', mbps])
+ self.cli_set(base_path + ['threshold', 'general', 'fps', fps])
+ self.cli_set(base_path + ['threshold', 'general', 'pps', pps])
+ self.cli_set(base_path + ['threshold', 'general', 'mbps', mbps])
# commit changes
self.cli_commit()