test framework: vpp_papi_provider.py - further cleanup
Part of further cleanups of this file. Removed most wrappers that don't have conflicting signature with message API. Change-Id: I6acd93d20291feb7731eb35ab2eb8c9f22f4632c Signed-off-by: Ole Troan <ot@cisco.com>
This commit is contained in:
@@ -52,10 +52,10 @@ class VppPipe(VppInterface):
|
||||
return False
|
||||
|
||||
def set_unnumbered(self, ip_sw_if_index, is_add=True):
|
||||
res = self._test.vapi.sw_interface_set_unnumbered(
|
||||
self.east, ip_sw_if_index, is_add)
|
||||
res = self._test.vapi.sw_interface_set_unnumbered(
|
||||
self.west, ip_sw_if_index, is_add)
|
||||
res = self._test.vapi.sw_interface_set_unnumbered(ip_sw_if_index,
|
||||
self.east, is_add)
|
||||
res = self._test.vapi.sw_interface_set_unnumbered(ip_sw_if_index,
|
||||
self.west, is_add)
|
||||
|
||||
|
||||
class TestPipe(VppTestCase):
|
||||
|
||||
Reference in New Issue
Block a user