Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
rzlim08 committed Aug 14, 2023
1 parent d5834b4 commit 5a87678
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_wdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def _wait_sfn(
sfn_arn: str,
n_stages: int = 1,
expect_success: bool = True
) -> Tuple[str, Dict, List[Dict]]:
) -> Tuple[str, Dict, List[Dict], List[str]]:
execution_name = "swipe-test-{}".format(int(time.time()))
res = self.sfn.start_execution(
stateMachineArn=sfn_arn, name=execution_name, input=json.dumps(sfn_input)
Expand All @@ -338,9 +338,9 @@ def _wait_sfn(
time.sleep(10)
description = self.sfn.describe_execution(executionArn=arn)

while messages := self.retrieve_message(self.step_change_queue_url):
while step_messages := self.retrieve_message(self.step_change_queue_url):
step_notifications.append(
messages
step_messages
)

print("printing execution history", file=sys.stderr)
Expand Down

0 comments on commit 5a87678

Please sign in to comment.