Fix table header for test plans (#33879)
Can I write code? Seemingly.
Can I do kindergarten math? Seemingly not.
diff --git a/src/python_testing/test_plan_table_generator.py b/src/python_testing/test_plan_table_generator.py
index bed4fa3..c972116 100755
--- a/src/python_testing/test_plan_table_generator.py
+++ b/src/python_testing/test_plan_table_generator.py
@@ -76,7 +76,7 @@
indent = 6
header_num = f'{"**#**":<{indent}}'
header_num_step = f'|{header_num} |*TestStep* '
- s = ('[cols="5%,45%,45%"]\n'
+ s = ('[cols="10%,45%,45%"]\n'
'|===\n'
f'{header_num_step}|*Expected Outcome*\n')
for step in steps: