Skip to content

Commit

Permalink
Fix E2E bug - add missing variable unpacking (#3116)
Browse files Browse the repository at this point in the history
add missing variable unpacking
  • Loading branch information
yuvalyaron authored Jan 24, 2023
1 parent 56647d5 commit bc7c3d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e_tests/resources/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def wait_for(func, client, operation_endpoint, headers, failure_states: li
while not done:
await asyncio.sleep(30)

done, done_state, message = await func(client, operation_endpoint, headers)
done, done_state, message, operation_steps = await func(client, operation_endpoint, headers)
LOGGER.info(f"{done}, {done_state}, {message}")
try:
assert done_state not in failure_states
Expand Down

0 comments on commit bc7c3d4

Please sign in to comment.