diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-27 11:25:48 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-28 06:36:04 +0000 |
commit | 8feeaff56fa9a4fbdfc06131f28a1060ffd9645d (patch) | |
tree | 76ab4368d46a40288e01aa46624470145c64524e /test/test_flowprobe.py | |
parent | 64f7530fff5d8811894c75fc3378a5c6da77d7b8 (diff) |
Typos. A bunch of typos I've been collecting.
Change-Id: I53ab8d17914e6563110354e4052109ac02bf8f3b
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_flowprobe.py')
-rw-r--r-- | test/test_flowprobe.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_flowprobe.py b/test/test_flowprobe.py index 5ffb7ce8efc..544d3beb328 100644 --- a/test/test_flowprobe.py +++ b/test/test_flowprobe.py @@ -234,7 +234,7 @@ class MethodHolder(VppTestCase): ip_layer = capture[0][IPv6] if data_set is not None: for record in data: - # skip flow if in/out gress interface is 0 + # skip flow if ingress/egress interface is 0 if int(binascii.hexlify(record[10]), 16) == 0: continue if int(binascii.hexlify(record[14]), 16) == 0: @@ -881,7 +881,7 @@ class DisableIPFIX(MethodHolder): self.wait_for_cflow_packet(self.collector, templates[1]) self.collector.get_capture(4) - # disble IPFIX + # disable IPFIX ipfix.disable_exporter() self.pg_enable_capture([self.collector]) @@ -998,7 +998,7 @@ class DisableFP(MethodHolder): self.wait_for_cflow_packet(self.collector, templates[1]) self.collector.get_capture(4) - # disble IPFIX + # disable IPFIX ipfix.disable_flowprobe_feature() self.pg_enable_capture([self.collector]) @@ -1049,7 +1049,7 @@ class ReenableFP(MethodHolder): self.wait_for_cflow_packet(self.collector, templates[1], 5) self.collector.get_capture(4) - # disble FPP feature + # disable FPP feature ipfix.disable_flowprobe_feature() self.pg_enable_capture([self.collector]) |