X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FVppCounters.py;fp=resources%2Flibraries%2Fpython%2FVppCounters.py;h=054900f31fce53ba5ddfb558bee030f953a2e8c5;hp=4f62b600419a88cf9df2e371856c6f6ba36fa038;hb=b06f59a307949de30a76cec3eec368aa0f7c4a06;hpb=46ff7172bfd32f96c45bd8c6f4a937c941d058b7 diff --git a/resources/libraries/python/VppCounters.py b/resources/libraries/python/VppCounters.py index 4f62b60041..054900f31f 100644 --- a/resources/libraries/python/VppCounters.py +++ b/resources/libraries/python/VppCounters.py @@ -206,7 +206,7 @@ class VppCounters: VppCounters.vpp_clear_hardware(node) @staticmethod - def vpp_clears_errors(node): + def vpp_clear_errors(node): """Run "clear errors" CLI command. :param node: Node to run command on. @@ -217,7 +217,7 @@ class VppCounters: ) @staticmethod - def vpp_clears_errors_on_all_duts(nodes): + def vpp_clear_errors_on_all_duts(nodes): """Clear VPP errors counters on all DUTs. :param nodes: VPP nodes. @@ -225,7 +225,7 @@ class VppCounters: """ for node in nodes.values(): if node[u"type"] == NodeType.DUT: - VppCounters.vpp_clears_errors(node) + VppCounters.vpp_clear_errors(node) @staticmethod def show_vpp_statistics(node):