X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_tunnel_interface.py;h=d70328eb239dc11f6dbf710fd238df586d03bcd2;hb=d9b0c6fbf7aa5bd9af84264105b39c82028a4a29;hp=6a336eb72d9ab9a8c59ebe506e9b826b9258560d;hpb=f90348bcb4afd0af2611cefc43b17ef3042b511c;p=vpp.git diff --git a/test/vpp_tunnel_interface.py b/test/vpp_tunnel_interface.py index 6a336eb72d9..d70328eb239 100644 --- a/test/vpp_tunnel_interface.py +++ b/test/vpp_tunnel_interface.py @@ -4,7 +4,7 @@ from vpp_interface import VppInterface class VppTunnelInterface(VppInterface, metaclass=abc.ABCMeta): - """ VPP tunnel interface abstraction """ + """VPP tunnel interface abstraction""" def __init__(self, test, parent_if): super(VppTunnelInterface, self).__init__(test) @@ -24,7 +24,9 @@ class VppTunnelInterface(VppInterface, metaclass=abc.ABCMeta): def add_stream(self, pkts): return self.parent_if.add_stream(pkts) - def get_capture(self, expected_count=None, remark=None, timeout=1, - filter_out_fn=is_ipv6_misc): - return self.parent_if.get_capture(expected_count, remark, timeout, - filter_out_fn) + def get_capture( + self, expected_count=None, remark=None, timeout=1, filter_out_fn=is_ipv6_misc + ): + return self.parent_if.get_capture( + expected_count, remark, timeout, filter_out_fn + )