File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ def make_start_op(workflow_id: str):
355355 start_workflow_operation = start_op_3 ,
356356 )
357357 assert (await start_op_3 .workflow_handle ()).first_execution_run_id is not None
358- with pytest .raises (WorkflowUpdateFailedError ) as exc_info :
358+ with pytest .raises (WorkflowUpdateFailedError ):
359359 await update_handle_3 .result ()
360360
361361 # Despite the update failure, the first execution run ID is set on the with_start_request,
@@ -488,7 +488,7 @@ async def test_update_with_start_client_outbound_interceptor(
488488 client : Client ,
489489):
490490 interceptor = SimpleClientInterceptor ()
491- client = Client (** {** client .config (), "interceptors" : [interceptor ]})
491+ client = Client (** {** client .config (), "interceptors" : [interceptor ]}) # type: ignore
492492
493493 async with new_worker (
494494 client ,
You can’t perform that action at this time.
0 commit comments