diff options
| author | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2025-07-31 21:16:30 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 15:16:30 +0100 |
| commit | ab106ad654cb9ac7a511306759d6e37da2d6b8c4 (patch) | |
| tree | 43116e1134c7e979c1c87a6073eb91526ec68cfb /smoketest/scripts/cli | |
| parent | a551fa45573ef57858904773d4bcc99dbf553b19 (diff) | |
| download | vyos-1x-ab106ad654cb9ac7a511306759d6e37da2d6b8c4.tar.gz vyos-1x-ab106ad654cb9ac7a511306759d6e37da2d6b8c4.zip | |
T7667: Fix smoketest IPsec DPD tests (#4633)
* T7667: Smoke test cli/test_vpn_ipsec.py typo makes DPD check always pass
* Update smoketest/scripts/cli/test_vpn_ipsec.py
Co-authored-by: Alexandr K. <alexandrk95@gmail.com>
---------
Co-authored-by: Daniil Baturin <daniil@baturin.org>
Co-authored-by: Alexandr K. <alexandrk95@gmail.com>
Diffstat (limited to 'smoketest/scripts/cli')
| -rwxr-xr-x | smoketest/scripts/cli/test_vpn_ipsec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_vpn_ipsec.py b/smoketest/scripts/cli/test_vpn_ipsec.py index 7f52db74e..5437711ce 100755 --- a/smoketest/scripts/cli/test_vpn_ipsec.py +++ b/smoketest/scripts/cli/test_vpn_ipsec.py @@ -265,8 +265,8 @@ class TestVPNIPsec(VyOSUnitTestSHIM.TestCase): # if dpd is not specified it should not be enabled (see T6599) swanctl_unexpected_lines = [ - f'dpd_timeout' - f'dpd_delay' + 'dpd_timeout', + 'dpd_delay', ] for unexpected_line in swanctl_unexpected_lines: |
