aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pipe.py
diff options
context:
space:
mode:
authorOle Troan <ot@cisco.com>2019-03-05 16:58:24 +0100
committerOle Troan <ot@cisco.com>2019-03-06 21:13:05 +0100
commit9a475373ed9b1ff9952acc06353ddaa50c2c96bd (patch)
tree6fb046cc31165335863646cba0f4b453d4538b10 /test/test_pipe.py
parentfb6c75293cb82501f80975c6a46365ab14d7a85a (diff)
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>
Diffstat (limited to 'test/test_pipe.py')
-rw-r--r--test/test_pipe.py8
1 files changed, 4 insertions, 4 deletions
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):