diff options
author | Ole Troan <ot@cisco.com> | 2018-12-17 12:02:26 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-12-18 11:54:24 +0000 |
commit | 8006c6aa425126529b4017768a9201e4f03964ad (patch) | |
tree | 7b7342e6fb4964a5c8ca65c3d13d8dcc980f120d /test/test_util.py | |
parent | 02782d6ebd13ce02f2d3facebb54fec3c2137c88 (diff) |
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 <ot@cisco.com>
Diffstat (limited to 'test/test_util.py')
-rwxr-xr-x | test/test_util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_util.py b/test/test_util.py index 49095d85931..01ba8623952 100755 --- a/test/test_util.py +++ b/test/test_util.py @@ -3,15 +3,15 @@ import unittest from framework import VppTestCase, VppTestRunner -from vpp_mac import mactobinary, binarytomac +from vpp_papi import mac_pton, mac_ntop class TestUtil (VppTestCase): """ MAC to binary and back """ def test_mac_to_binary(self): mac = 'aa:bb:cc:dd:ee:ff' - b = mactobinary(mac) - mac2 = binarytomac(b) + b = mac_pton(mac) + mac2 = mac_ntop(b) self.assertEqual(type(mac), type(mac2)) self.assertEqual(mac2, mac) |