Skip to content

Commit b539c6d

Browse files
authored
refactor: rename _check_failing_spans_with_quarantine (#746)
1 parent d10500b commit b539c6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mergify_cli/ci/quarantine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def check_failing_spans_with_quarantine(
5050
return 0
5151

5252
failing_tests_not_quarantined_count: int = 0
53-
quarantined_tests_tuple = await _check_failing_spans_with_quarantine(
53+
quarantined_tests_tuple = await fetch_quarantined_tests_from_failing_spans(
5454
api_url,
5555
token,
5656
repository,
@@ -109,7 +109,7 @@ class QuarantinedTests(typing.NamedTuple):
109109
retry=tenacity.retry_if_exception_type(httpx.TransportError),
110110
reraise=True,
111111
)
112-
async def _check_failing_spans_with_quarantine(
112+
async def fetch_quarantined_tests_from_failing_spans(
113113
api_url: str,
114114
token: str,
115115
repository: str,

0 commit comments

Comments
 (0)