tests: replace pycodestyle with black
[vpp.git] / src / vpp-api / python / vpp_papi / tests / test_macaddress.py
1 import unittest
2 from vpp_papi import MACAddress
3
4
5 class TestMacAddress(unittest.TestCase):
6     def test_eq(self):
7         mac = "11:22:33:44:55:66"
8         self.assertEqual(MACAddress(mac), MACAddress(mac))