From b8fa4377a7e87d9042acff1386afa8fb8c760117 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Fri, 17 Sep 2021 07:01:34 -0600 Subject: [PATCH] test_l3_longevity.py : added module call to lf_report back in Signed-off-by: Chuck SmileyRekiere --- py-scripts/test_l3_longevity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-scripts/test_l3_longevity.py b/py-scripts/test_l3_longevity.py index 35fe7266..8e0a4a50 100755 --- a/py-scripts/test_l3_longevity.py +++ b/py-scripts/test_l3_longevity.py @@ -1355,9 +1355,9 @@ python3 .\\test_l3_longevity.py --test_duration 4m --endp_type \"lf_tcp lf_udp m # Create report, when running with the test framework (lf_check.py) results need to be in the same directory if local_lf_report_dir != "": - report = lf_report(_path=local_lf_report_dir, _results_dir_name = "test_l3_longevity",_output_html="test_l3_longevity.html",_output_pdf="test_l3_longevity.pdf") + report = lf_report.lf_report(_path=local_lf_report_dir, _results_dir_name = "test_l3_longevity",_output_html="test_l3_longevity.html",_output_pdf="test_l3_longevity.pdf") else: - report = lf_report(_results_dir_name = "test_l3_longevity",_output_html="test_l3_longevity.html",_output_pdf="test_l3_longevity.pdf") + report = lf_report.lf_report(_results_dir_name = "test_l3_longevity",_output_html="test_l3_longevity.html",_output_pdf="test_l3_longevity.pdf")