File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ async def test_heartbeat_details_payload_conversion(client: Client):
406406 if (
407407 item .context_type == "activity"
408408 and item .method == "from_payload"
409- and item .in_workflow == False
409+ and not item .in_workflow
410410 and item .context == activity_context
411411 ):
412412 found_heartbeat_decode = True
@@ -830,7 +830,6 @@ async def test_external_workflow_signal_and_cancel_payload_conversion(
830830):
831831 target_workflow_id = str (uuid .uuid4 ())
832832 signaler_workflow_id = str (uuid .uuid4 ())
833- canceller_workflow_id = str (uuid .uuid4 ())
834833 task_queue = str (uuid .uuid4 ())
835834
836835 data_converter = dataclasses .replace (
@@ -869,7 +868,7 @@ async def test_external_workflow_signal_and_cancel_payload_conversion(
869868
870869 # Wait for both to complete
871870 signaler_result = await signaler_handle .result ()
872- target_result = await target_handle .result ()
871+ await target_handle .result ()
873872
874873 # Verify signal trace
875874 signaler_context = dataclasses .asdict (
You can’t perform that action at this time.
0 commit comments