Skip to content

Commit

Permalink
We only retry twice now, so only do this once
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrittervg committed Sep 12, 2024
1 parent 3d59ed8 commit 31b6517
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/functionality_all_platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def testTryLockedOutput(self):

def try_output():
nonlocal call_counter
if call_counter < 2:
if call_counter < 1:
call_counter += 1
return (1, TRY_LOCKED_OUTPUT)
return (0, TRY_OUTPUT(expected_values.try_revision_id()))
Expand Down
2 changes: 1 addition & 1 deletion tests/functionality_two_platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def testTryLockedOutput(self):

def try_output():
nonlocal call_counter
if call_counter < 2:
if call_counter < 1:
call_counter += 1
return (1, TRY_LOCKED_OUTPUT)
return (0, TRY_OUTPUT(expected_values.try_revisions_func()[0]))
Expand Down

0 comments on commit 31b6517

Please sign in to comment.