X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_gre.py;h=cfba5594641f488f2a7f18a7fe09bf98707b9431;hb=ee4172ef0a115b6d96cfb0d5cc6ef4fb211c01aa;hp=a79819ed73c2bb828b26a24548ae41e999a9ccfe;hpb=d9b0c6fbf7aa5bd9af84264105b39c82028a4a29;p=vpp.git diff --git a/test/test_gre.py b/test/test_gre.py index a79819ed73c..cfba5594641 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -58,7 +58,7 @@ class TestGREInputNodes(VppTestCase): self.pg0.add_stream(pkt) self.pg_start() # no tunnel created, gre-input not registered - err = self.statistics.get_counter("/err/ip4-local/unknown ip protocol")[0] + err = self.statistics.get_counter("/err/ip4-local/unknown_protocol")[0] self.assertEqual(err, 1) err_count = err @@ -69,7 +69,7 @@ class TestGREInputNodes(VppTestCase): self.pg0.add_stream(pkt) self.pg_start() # tunnel created, gre-input registered - err = self.statistics.get_counter("/err/ip4-local/unknown ip protocol")[0] + err = self.statistics.get_counter("/err/ip4-local/unknown_protocol")[0] # expect no new errors self.assertEqual(err, err_count)