diff options
author | Neale Ranns <neale@graphiant.com> | 2022-08-09 00:59:37 +0000 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2022-08-11 06:48:27 +0000 |
commit | 13a74ae25d606f0ee85b65a57d7cba8bba86c2c2 (patch) | |
tree | d703b21c498a1ffdc621a296d5a1cfe58dc62061 /test | |
parent | ee15f8682cf5052e4a86b6498b9d0f630d1b9d68 (diff) |
arp: Use the new style error count declaration
Type: improvement
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: Ifda8ca8d26912c750a77d2ca889e1638ca83d85a
Diffstat (limited to 'test')
-rw-r--r-- | test/test_neighbor.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_neighbor.py b/test/test_neighbor.py index 64be36d739a..503b1f11456 100644 --- a/test/test_neighbor.py +++ b/test/test_neighbor.py @@ -1794,9 +1794,7 @@ class ARPTestCase(VppTestCase): # they are all dropped because the subnet's don't match self.assertEqual( 4, - self.statistics.get_err_counter( - "/err/arp-reply/IP4 destination address not local to subnet" - ), + self.statistics.get_err_counter("/err/arp-reply/l3_dst_address_not_local"), ) def test_arp_incomplete2(self): |