Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Torsten Kilias <[email protected]>
  • Loading branch information
ckunki and tkilias authored Apr 3, 2024
1 parent 475e18c commit 6e32d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/aws/test_codebuild_waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def ms(value: int) -> timedelta:
return timedelta(milliseconds=value)


def codebuild_client(build_duration: timedelta, finish_status: str):
def codebuild_client(build_duration: timedelta, finish_status: str) -> MagicMock:
end_time = datetime.now() + build_duration
def batch_get_builds(ids: List[int]):
if len(ids) == 1 and ids[0] == BUILD_ID:
Expand Down

0 comments on commit 6e32d60

Please sign in to comment.