Skip to content

Commit 434a314

Browse files
committed
Update tests to expect uuid version 7 from server
1 parent 832e30d commit 434a314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/worker/test_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ async def test_workflow_info(client: Client, env: WorkflowEnvironment):
222222
assert info["retry_policy"] == json.loads(
223223
json.dumps(dataclasses.asdict(retry_policy), default=str)
224224
)
225-
assert uuid.UUID(info["run_id"]).version == 4
225+
assert uuid.UUID(info["run_id"]).version == 7
226226
assert info["run_timeout"] is None
227227
datetime.fromisoformat(info["start_time"])
228228
assert info["task_queue"] == worker.task_queue

0 commit comments

Comments
 (0)