Skip to content

Commit 774fed0

Browse files
fix lint
1 parent fffc9ea commit 774fed0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/server/agent_execution/test_simple_request_context_builder.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
336339
if __name__ == '__main__':
337340
unittest.main()

0 commit comments

Comments
 (0)