diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-03-31 09:54:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 09:54:13 +0300 |
commit | fdfaa680ef77a469698bfd30c56131710e637253 (patch) | |
tree | d061d2b55faff69ca8b26f0ae3af03e689f9a5b2 /smoketest/scripts/cli | |
parent | 73285f5ed90239238ac9b6d76bd1fa580301bd2a (diff) | |
parent | 8a75a0ea52f24b27ef0b4e50dc91e4144bcca059 (diff) | |
download | vyos-1x-fdfaa680ef77a469698bfd30c56131710e637253.tar.gz vyos-1x-fdfaa680ef77a469698bfd30c56131710e637253.zip |
Merge pull request #1925 from sever-sever/T4173-smoketest
T4173: Fix smoketest for load-balancing wan
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_load_balancing_wan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_load_balancing_wan.py b/smoketest/scripts/cli/test_load_balancing_wan.py index 0e1806f66..8df3471f7 100755 --- a/smoketest/scripts/cli/test_load_balancing_wan.py +++ b/smoketest/scripts/cli/test_load_balancing_wan.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2022 VyOS maintainers and contributors +# Copyright (C) 2022-2023 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -177,7 +177,7 @@ class TestLoadBalancingWan(VyOSUnitTestSHIM.TestCase): nat_vyos_pre_snat_hook = """table ip nat { chain VYOS_PRE_SNAT_HOOK { type nat hook postrouting priority srcnat - 1; policy accept; - return + counter jump WANLOADBALANCE } }""" |