Skip to content

Commit c45c5db

Browse files
committed
fix: fix tests to reflect when mentor count should and shouldnt be in the markdown table
Signed-off-by: Zack Koppert <zkoppert@github.com>
1 parent 93ceb73 commit c45c5db

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test_markdown_writer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ def test_write_to_markdown(self):
129129
"| --- | ---: |\n"
130130
"| Number of items that remain open | 2 |\n"
131131
"| Number of items closed | 1 |\n"
132-
"| Number of most active mentors | 5 |\n"
133132
"| Total number of items created | 2 |\n\n"
134133
"| Title | URL | Author | Time to first response | Time to close |"
135134
" Time to answer | Time in draft | Time spent in bug | Created At |\n"
@@ -240,7 +239,6 @@ def test_write_to_markdown_with_vertical_bar_in_title(self):
240239
"| --- | ---: |\n"
241240
"| Number of items that remain open | 2 |\n"
242241
"| Number of items closed | 1 |\n"
243-
"| Number of most active mentors | 5 |\n"
244242
"| Total number of items created | 2 |\n\n"
245243
"| Title | URL | Author | Time to first response | Time to close |"
246244
" Time to answer | Time in draft | Time spent in bug | Created At |\n"
@@ -369,6 +367,7 @@ def test_writes_markdown_file_with_non_hidden_columns_only(self):
369367
search_query="repo:user/repo is:issue",
370368
hide_label_metrics=True,
371369
hide_items_closed_count=True,
370+
enable_mentor_count=True,
372371
non_mentioning_links=True,
373372
report_title="Issue Metrics",
374373
output_file="issue_metrics.md",

0 commit comments

Comments
 (0)