diff options
author | fett0 <50275740+fett0@users.noreply.github.com> | 2024-08-05 17:25:47 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 17:25:47 -0300 |
commit | 877fcadbe5ab9402880994fe0e723d2942b41132 (patch) | |
tree | 56884ea52313daf4aa588a486a4d55b3d55626cc | |
parent | 200fa3dc958e1a225e8e5f45c06e9009cd18a494 (diff) | |
download | vyos-1x-877fcadbe5ab9402880994fe0e723d2942b41132.tar.gz vyos-1x-877fcadbe5ab9402880994fe0e723d2942b41132.zip |
OPENVPN: T6555: fix missing 's'mergify/bp/circinus/pr-3920
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_openvpn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_openvpn.py b/smoketest/scripts/cli/test_interfaces_openvpn.py index 48ea318ef..145e89660 100755 --- a/smoketest/scripts/cli/test_interfaces_openvpn.py +++ b/smoketest/scripts/cli/test_interfaces_openvpn.py @@ -667,7 +667,7 @@ class TestInterfacesOpenVPN(VyOSUnitTestSHIM.TestCase): self.assertIn(f'data-ciphers AES-192-CBC', config) self.assertIn(f'mode server', config) self.assertIn(f'server-bridge {gw_subnet} {mask_subnet} {start_subnet} {stop_subnet}', config) - elf.assertIn(f'keepalive 5 25', config) + self.assertIn(f'keepalive 5 25', config) |