From 8006c6aa425126529b4017768a9201e4f03964ad Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Mon, 17 Dec 2018 12:02:26 +0100 Subject: PAPI: Add MACAddress object wrapper for vl_api_mac_address_t Change the definition of vl_api_mac_address_t to an aliased type. Change-Id: I1434f316d0fad6a099592f39bceeb8faeaf1d134 Signed-off-by: Ole Troan --- test/test_bond.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_bond.py') diff --git a/test/test_bond.py b/test/test_bond.py index b955f899190..9926d230564 100644 --- a/test/test_bond.py +++ b/test/test_bond.py @@ -7,8 +7,8 @@ from framework import VppTestCase, VppTestRunner from scapy.packet import Raw from scapy.layers.l2 import Ether from scapy.layers.inet import IP, UDP -from vpp_mac import mactobinary from vpp_bond_interface import VppBondInterface +from vpp_papi import MACAddress class TestBondInterface(VppTestCase): @@ -56,7 +56,7 @@ class TestBondInterface(VppTestCase): # create interface (BondEthernet0) # self.logger.info("create bond") bond0_mac = "02:fe:38:30:59:3c" - mac = mactobinary(bond0_mac) + mac = MACAddress(bond0_mac).packed bond0 = VppBondInterface(self, mode=3, lb=1, -- cgit 1.2.3-korg