diff options
author | Abhijit Sinha <abhijit.sinha@intel.com> | 2017-10-18 16:44:45 +0100 |
---|---|---|
committer | Abhijit Sinha <abhijit.sinha@intel.com> | 2017-10-19 16:21:14 +0100 |
commit | a27278dacaa54ae60cd3bdfa6e6145643f76fa02 (patch) | |
tree | 92fbb15bc37162b23fb61f37504cb6768cd06ea1 /tests/unit/network_services | |
parent | 1a2fed8a24fbae878e317019a8fb994cc6cc8cfd (diff) |
BugFix: Negative dropped packets in Prox tests
Removed the abs function which can potentially mask
negative dropped packets.
Dropped packets in Prox workload VNF = rx_packets - tx_packets
Change-Id: I510a351e899cdf9a1f366d632b9f0528b1d9dcce
Signed-off-by: Abhijit Sinha <abhijit.sinha@intel.com>
Diffstat (limited to 'tests/unit/network_services')
-rw-r--r-- | tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py b/tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py index a6d40877d..e29e8ddcd 100644 --- a/tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py +++ b/tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py @@ -348,9 +348,9 @@ class TestProxApproxVnf(unittest.TestCase): prox_approx_vnf.resource_helper = resource_helper expected = { - 'packets_in': 7, + 'packets_in': 6, 'packets_dropped': 1, - 'packets_fwd': 6, + 'packets_fwd': 7, 'collect_stats': {'core': {'result': 234}}, } result = prox_approx_vnf.collect_kpi() |