Skip to content

Commit 2d97cda

Browse files
authored
Fix table header for test plans (#33879)
Can I write code? Seemingly. Can I do kindergarten math? Seemingly not.
1 parent 4d5c047 commit 2d97cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_testing/test_plan_table_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def main(filename, classname, test):
7676
indent = 6
7777
header_num = f'{"**#**":<{indent}}'
7878
header_num_step = f'|{header_num} |*TestStep* '
79-
s = ('[cols="5%,45%,45%"]\n'
79+
s = ('[cols="10%,45%,45%"]\n'
8080
'|===\n'
8181
f'{header_num_step}|*Expected Outcome*\n')
8282
for step in steps:

0 commit comments

Comments
 (0)