From 0c342eb6ee62f4cf59c0f4703b52a38ba7483bba Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Tue, 11 Feb 2020 03:01:19 +0000 Subject: ip: fix ip-local errors Type: fix Signed-off-by: Florin Coras Change-Id: Ie8bc5c9a03e858487cf565b4e9b520e6b496337a (cherry picked from commit fa2a316663e622a2feeecf8ad7d32b242370a70a) --- test/test_gre.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_gre.py b/test/test_gre.py index c5239b2cf9d..ae25cf7fb16 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -47,7 +47,7 @@ class TestGREInputNodes(VppTestCase): self.pg_start() # no tunnel created, gre-input not registered err = self.statistics.get_counter( - '/err/ip4-input/unknown ip protocol')[0] + '/err/ip4-local/unknown ip protocol')[0] self.assertEqual(err, 1) err_count = err @@ -59,7 +59,7 @@ class TestGREInputNodes(VppTestCase): self.pg_start() # tunnel created, gre-input registered err = self.statistics.get_counter( - '/err/ip4-input/unknown ip protocol')[0] + '/err/ip4-local/unknown ip protocol')[0] # expect no new errors self.assertEqual(err, err_count) -- cgit 1.2.3-korg