Skip to content

Commit

Permalink
Fixing mistyping for iterations parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-amjr committed Nov 28, 2023
1 parent 868877d commit 64665b7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,7 @@ def selected_tests_from_execution(run: TestRunExecution) -> SelectedTests:
)
for case in suite.test_case_executions:
collections[index].test_suites[-1].test_cases.append(
SelectedTestCase(
public_id=case.public_id, iterations=case.execution_index
)
SelectedTestCase(public_id=case.public_id, iterations=1)
)

return SelectedTests(collections=collections)
Expand Down

0 comments on commit 64665b7

Please sign in to comment.