From b9b26e2dc1815a7681e8cae1278a2e5d2191f68a Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Sat, 24 Nov 2018 09:11:34 -0500 Subject: [PATCH] Fix: case -> testcase Signed-off-by: Jonathan Rajotte --- scripts/system-tests/lava-submit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system-tests/lava-submit.py b/scripts/system-tests/lava-submit.py index 3cf1131..a49bacd 100644 --- a/scripts/system-tests/lava-submit.py +++ b/scripts/system-tests/lava-submit.py @@ -84,7 +84,7 @@ def fetch_benchmark_results(build_id): 'processed_results_lttng_test_filter.csv'] for testcase in testcases: url = urljoin(OBJSTORE_URL, "{:s}/{:s}".format(build_id, testcase)) - urlretrieve(url, case) + urlretrieve(url, testcase) # Parse the attachment of the testcase to fetch the stdout of the test suite def print_test_output(server, job): -- 2.34.1