diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-14 08:46:52 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-03-14 21:26:07 +0000 |
commit | e3a0e6e8bfe989a643f90902dd214c46ae69597e (patch) | |
tree | 391b510172e6da12297dda632fa0fe4556372056 | |
parent | 6f0fb0bd82a8a3e0d28faf61d264a9f46b58032e (diff) |
Tests: test/test_flowprobe.py Fix TypeError.
TypeError: not all arguments converted during string formatting
Change-Id: I0b4b27e37ba47e737aeb639c9787f8bc08a92dce
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
-rw-r--r-- | test/test_flowprobe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_flowprobe.py b/test/test_flowprobe.py index 625bb3a2a29..757226b0db8 100644 --- a/test/test_flowprobe.py +++ b/test/test_flowprobe.py @@ -72,7 +72,7 @@ class VppCFLOW(VppObject): (self._intf, self._datapath)) def object_id(self): - return "ipfix-collector-%s" % (self._src, self.dst) + return "ipfix-collector-%s-%s" % (self._src, self.dst) def query_vpp_config(self): return self._configured |