Skip to content

Commit f2db1cd

Browse files
committed
Fix tests
1 parent c5f3540 commit f2db1cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples-v2/function_chaining/tests/test_http_start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def test_HttpStart(self, client):
2222
# Create a generator using the method and mocked context
2323
result = asyncio.run(func_call(req, client))
2424

25-
client.start_new.assert_called_once_with("my_orchestrator", client_input={})
25+
client.start_new.assert_called_once_with("my_orchestrator")
2626
client.create_check_status_response.assert_called_once_with(req, "instance_id")
2727
self.assertEqual(result, "check_status_response")

0 commit comments

Comments
 (0)