typo fix for displaying commands in email

This commit is contained in:
Thomas Kidd 2024-03-13 22:40:00 -05:00
parent 90026a5da1
commit 7ed2d0c13d

View File

@ -351,7 +351,7 @@ class TestRunner:
if test_exctention:
command = [test_type, test_name, test_exctention]
logger.info(f"Command used to run tests: {test_type} {test_name} -{test_exctention}")
logger.info(f"Command used to run tests: {test_type} {test_name} {test_exctention}")
else:
command = [test_type, test_name]
logger.info(f"Command used to run tests: {test_type} {test_name}")