diff options
Diffstat (limited to 'test/test_neighbor.py')
-rw-r--r-- | test/test_neighbor.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_neighbor.py b/test/test_neighbor.py index 6a60809160b..885bf5a4f4b 100644 --- a/test/test_neighbor.py +++ b/test/test_neighbor.py @@ -40,6 +40,13 @@ class ARPTestCase(VppTestCase): self.pg3.set_table_ip4(1) self.pg3.config_ip4() + def tearDown(self): + super(ARPTestCase, self).tearDown() + for i in self.pg_interfaces: + i.unconfig_ip4() + i.unconfig_ip6() + i.admin_down() + def verify_arp_req(self, rx, smac, sip, dip): ether = rx[Ether] self.assertEqual(ether.dst, "ff:ff:ff:ff:ff:ff") |