make test: fix debug print
Change-Id: Id31a1a3644bdc245f12f3c9bce211099c5ef48f8 Signed-off-by: Klement Sekera <ksekera@cisco.com>
This commit is contained in:

committed by
Damjan Marion

parent
a913534837
commit
b12794e1bf
@ -148,7 +148,7 @@ class VppPGInterface(VppInterface):
|
||||
before = len(output.res)
|
||||
if filter_out_fn:
|
||||
output.res = [p for p in output.res if not filter_out_fn(p)]
|
||||
removed = len(output.res) - before
|
||||
removed = before - len(output.res)
|
||||
if removed:
|
||||
self.test.logger.debug(
|
||||
"Filtered out %s packets from capture (returning %s)" %
|
||||
|
Reference in New Issue
Block a user