From 9a475373ed9b1ff9952acc06353ddaa50c2c96bd Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Tue, 5 Mar 2019 16:58:24 +0100 Subject: 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 --- test/test_pipe.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test_pipe.py') diff --git a/test/test_pipe.py b/test/test_pipe.py index a2b630fc301..73d716f1d91 100644 --- a/test/test_pipe.py +++ b/test/test_pipe.py @@ -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): -- cgit 1.2.3-korg