From 14dc3261604954cdd38a424434e689dc60feeaed Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 1 Sep 2024 08:36:50 -0400 Subject: [PATCH] fix typo --- tools/regression-tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index 2cc1be0618..07e3aca049 100644 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -982,7 +982,7 @@ if __name__ == "__main__": if len(input_list) > quick_max: input_list = random.sample(input_list, quick_max) - msq += "\nTesting " + str(quick_max) + " randomly selected inputs" + msg += "\nTesting " + str(quick_max) + " randomly selected inputs" print(msg) logger.info(msg)