Skip to content

Commit 36acd6a

Browse files
andystaplesCopilot
andauthored
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 21ff684 commit 36acd6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/durabletask-azuremanaged/test_dts_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def parent_orchestrator(ctx: task.OrchestrationContext, _):
194194

195195
task_hub_client = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
196196
taskhub=taskhub_name, token_credential=None)
197-
id = task_hub_client.schedule_new_orchestration(parent_orchestrator, input=10)
197+
id = task_hub_client.schedule_new_orchestration(parent_orchestrator, input=None)
198198
state = task_hub_client.wait_for_orchestration_completion(id, timeout=30)
199199

200200
assert state is not None

tests/durabletask/test_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def parent_orchestrator(ctx: task.OrchestrationContext, _):
179179
w.start()
180180

181181
task_hub_client = client.TaskHubGrpcClient()
182-
id = task_hub_client.schedule_new_orchestration(parent_orchestrator, input=10)
182+
id = task_hub_client.schedule_new_orchestration(parent_orchestrator, input=None)
183183
state = task_hub_client.wait_for_orchestration_completion(id, timeout=30)
184184

185185
assert state is not None

0 commit comments

Comments
 (0)