aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_plots.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-05-07 12:24:38 +0200
committerTibor Frank <tifrank@cisco.com>2019-05-07 12:24:38 +0200
commit06785b385fb4acf5fd5f20ce3ee7a46e0b863c06 (patch)
tree1b21e11f8c68ed62b2e57dd4e511f8c31f2988a8 /resources/tools/presentation/generator_plots.py
parentdc85b05f17bb6d04b4c6b4126590f28b6014b9a5 (diff)
Report: Fix NFV Graphs
Change-Id: If11ed726cb75134c24cde3a752d2e72188bbe3a2 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r--resources/tools/presentation/generator_plots.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index 0fab894193..56b9a89a91 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -1431,10 +1431,10 @@ def plot_service_density_heatmap_compare(plot, input_data):
if groups and len(groups.groups()) == 3:
if str(groups.group(3)) == \
plot["reference"]["include"]:
- vals[c][n]["vals_c"].append(result)
+ vals[c][n]["vals_r"].append(result)
elif str(groups.group(3)) == \
plot["compare"]["include"]:
- vals[c][n]["vals_r"].append(result)
+ vals[c][n]["vals_c"].append(result)
break
if not vals:
logging.error("No data.")