stats: stat_validate_counter_vector3 non-static
[vpp.git] / test / test_l2tp.py
index 1d229e6..5a66523 100644 (file)
@@ -1,13 +1,15 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import unittest
 
 from scapy.layers.l2 import Ether
 from scapy.layers.inet6 import IPv6
 
+from framework import tag_fixme_vpp_workers
 from framework import VppTestCase
 
 
+@tag_fixme_vpp_workers
 class TestL2tp(VppTestCase):
     """ L2TP Test Case """
 
@@ -34,9 +36,8 @@ class TestL2tp(VppTestCase):
         self.assertEqual(err, 0)
         err_count = err
 
-        self.vapi.l2tpv3_create_tunnel(client_address=self.pg0.local_ip6n,
-                                       our_address=self.pg0.remote_ip6n,
-                                       is_ipv6=1)
+        self.vapi.l2tpv3_create_tunnel(client_address=self.pg0.local_ip6,
+                                       our_address=self.pg0.remote_ip6)
 
         self.pg0.add_stream(pkt)
         self.pg_start()