diff options
author | Neale Ranns <nranns@cisco.com> | 2019-06-19 07:07:13 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-06-19 15:56:18 +0000 |
commit | bc764c8bc26282445901dc9aa32223a13f18e8dc (patch) | |
tree | 5269531d092bb3d9f8ba9bad025d2057314dd473 /test/test_gbp.py | |
parent | 6a69b2483198de57ef304cb5e05a2ecfb960e68f (diff) |
l2: BD ARP termination entry API update
Type: refactor
Change-Id: I492b6e88acadf0ab0e4d7b1c0c5d1cab84c1726f
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_gbp.py')
-rw-r--r-- | test/test_gbp.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test_gbp.py b/test/test_gbp.py index 42defbf0d5c..0580fff2b6f 100644 --- a/test/test_gbp.py +++ b/test/test_gbp.py @@ -841,10 +841,10 @@ class TestGBP(VppTestCase): # add the BD ARP termination entry for BVI IP epg.bd_arp_ip4 = VppBridgeDomainArpEntry(self, epg.bd.bd, str(self.router_mac), - epg.bvi_ip4) + epg.bvi_ip4.address) epg.bd_arp_ip6 = VppBridgeDomainArpEntry(self, epg.bd.bd, str(self.router_mac), - epg.bvi_ip6) + epg.bvi_ip6.address) epg.bd_arp_ip4.add_vpp_config() epg.bd_arp_ip6.add_vpp_config() @@ -917,7 +917,8 @@ class TestGBP(VppTestCase): # add the BD ARP termination entry for floating IP for fip in ep.fips: - ba = VppBridgeDomainArpEntry(self, epg_nat.bd.bd, ep.mac, fip) + ba = VppBridgeDomainArpEntry(self, epg_nat.bd.bd, ep.mac, + fip.address) ba.add_vpp_config() # floating IPs route via EPG recirc @@ -2063,7 +2064,7 @@ class TestGBP(VppTestCase): # add the BD ARP termination entry for BVI IP epg.bd_arp_ip4 = VppBridgeDomainArpEntry(self, epg.bd.bd, str(self.router_mac), - epg.bvi_ip4) + epg.bvi_ip4.address) epg.bd_arp_ip4.add_vpp_config() # EPG in VPP |