diff options
author | Florin Coras <fcoras@cisco.com> | 2019-06-18 10:57:26 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-06-18 19:18:33 +0000 |
commit | b54a599f3815954e17b370ffb203cb790b628513 (patch) | |
tree | 54b93cd7df2d7eab91e50cbc450cba79babeef1b | |
parent | 03624bbd6b781b6af50f4ed028d34fa2ba0eee4f (diff) |
ipsec: fix ipv6 tunnel protect tests
Type: fix
Change-Id: I1f8007ae659097152046aa1396cc23f126e29018
Signed-off-by: Florin Coras <fcoras@cisco.com>
-rw-r--r-- | test/test_ipsec_tun_if_esp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_ipsec_tun_if_esp.py b/test/test_ipsec_tun_if_esp.py index cc220d5a0a4..1b8aca9b450 100644 --- a/test/test_ipsec_tun_if_esp.py +++ b/test/test_ipsec_tun_if_esp.py @@ -945,8 +945,7 @@ class TemplateIpsec6TunProtect(object): p.route = VppIpRoute(self, p.remote_tun_if_host, 128, [VppRoutePath(p.tun_if.remote_ip6, 0xffffffff, - proto=DpoProto.DPO_PROTO_IP6)], - is_ip6=1) + proto=DpoProto.DPO_PROTO_IP6)]) p.route.add_vpp_config() def unconfig_network(self, p): |