From 8c8acc027871f97370ee549306876690030c3bbb Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Tue, 27 Nov 2018 10:05:23 +0100 Subject: API: Change ip4_address and ip6_address to use type alias. Change-Id: Id8669bbadd1d6b2054865a310a654e9b38d1667d Signed-off-by: Ole Troan --- test/test_ip4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_ip4.py') diff --git a/test/test_ip4.py b/test/test_ip4.py index c18ce4caa0a..c13024115e0 100644 --- a/test/test_ip4.py +++ b/test/test_ip4.py @@ -1213,7 +1213,7 @@ class TestIPPunt(VppTestCase): for p in punts: self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index) self.assertNotEqual(punts[1].punt.nh.un.ip4, self.pg3.remote_ip4) - self.assertEqual(punts[2].punt.nh.un.ip4.address, '\x00'*4) + self.assertEqual(punts[2].punt.nh.un.ip4, '\x00'*4) class TestIPDeag(VppTestCase): -- cgit 1.2.3-korg