Skip to content

Commit 00c3b18

Browse files
committed
lint
1 parent 5b9a97a commit 00c3b18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/testrail_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,9 @@ def mark_results(testrail_session: TestRail, test_results):
256256
# Don't set passed tests to another status.
257257
test_cases_ids = []
258258
durations = []
259-
for i, tc in enumerate(all_test_cases):
260-
if current_results.get(tc) != 1:
261-
test_cases_ids.append(tc)
259+
for i, test_case in enumerate(all_test_cases):
260+
if current_results.get(test_case) != 1:
261+
test_cases_ids.append(test_case)
262262
durations.append(all_durations[i])
263263
logging.warning(
264264
f"Setting the following test cases in run {run_id} to {category}: {test_cases_ids}"

0 commit comments

Comments
 (0)