File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
tests/server/agent_execution Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,9 @@ async def test_build_with_custom_id_generators(self) -> None:
304304 self .assertEqual (request_context .task_id , 'custom_task_id' )
305305 self .assertEqual (request_context .context_id , 'custom_context_id' )
306306
307- async def test_build_with_provided_ids_and_custom_id_generators (self ) -> None :
307+ async def test_build_with_provided_ids_and_custom_id_generators (
308+ self ,
309+ ) -> None :
308310 mock_task_id_generator = AsyncMock (spec = IDGenerator )
309311 mock_context_id_generator = AsyncMock (spec = IDGenerator )
310312
@@ -333,5 +335,6 @@ async def test_build_with_provided_ids_and_custom_id_generators(self) -> None:
333335 self .assertEqual (request_context .task_id , provided_task_id )
334336 self .assertEqual (request_context .context_id , provided_context_id )
335337
338+
336339if __name__ == '__main__' :
337340 unittest .main ()
You can’t perform that action at this time.
0 commit comments