From af4f7a5ebbafae16b21a323fe0e7a6efca45573b Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 24 Nov 2021 16:03:31 -0800 Subject: [PATCH] lf_dfs_test: Fix undefined variables Signed-off-by: Matthew Stidham --- py-scripts/lf_dfs_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py-scripts/lf_dfs_test.py b/py-scripts/lf_dfs_test.py index 5c7f9082..35289eb7 100755 --- a/py-scripts/lf_dfs_test.py +++ b/py-scripts/lf_dfs_test.py @@ -3156,7 +3156,7 @@ Sample script 2/11/2021 debug_on=debug_on, wait_timeout=wait_timeout, outfile=csv_outfile, - results=csv_results, + results=args.csv_results, test_keys=test_keys, test_config=test_config, reset_port_enable_list=reset_port_enable_list, @@ -3170,8 +3170,8 @@ Sample script 2/11/2021 side_b_min_pdu=controller_packet_size, side_b_max_pdu=0, number_template="00", - test_duration=test_duration, - polling_interval=polling_interval, + test_duration=args.test_duration, + polling_interval=args.polling_interval, lfclient_host=lfjson_host, lfclient_port=lfjson_port) __csv_started = True