diff options
author | Florin Coras <fcoras@cisco.com> | 2020-02-11 03:01:19 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-02-11 15:49:46 +0000 |
commit | fa2a316663e622a2feeecf8ad7d32b242370a70a (patch) | |
tree | cede26621f05ed62d026957190f24a998d249216 /test | |
parent | 4a06846dd668d7f687e6770215c38e8feb5f1740 (diff) |
ip: fix ip-local errors
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ie8bc5c9a03e858487cf565b4e9b520e6b496337a
Diffstat (limited to 'test')
-rw-r--r-- | test/test_gre.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_gre.py b/test/test_gre.py index c604378f2b5..386d5dacabc 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -48,7 +48,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 @@ -60,7 +60,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) |