diff --git a/studio/backend/tests/test_context_compaction_edge.py b/studio/backend/tests/test_context_compaction_edge.py index 65f6b5c330..e2046b8efb 100644 --- a/studio/backend/tests/test_context_compaction_edge.py +++ b/studio/backend/tests/test_context_compaction_edge.py @@ -579,7 +579,11 @@ def test_paired_window_resumes_after_new_assistant_with_tool_call(): "role": "assistant", "content": "", "tool_calls": [ - {"id": "A", "type": "function", "function": {"name": "f", "arguments": "{}"}} + { + "id": "A", + "type": "function", + "function": {"name": "f", "arguments": "{}"}, + } ], }, {"role": "user", "content": "wait, do this instead"}, @@ -587,7 +591,11 @@ def test_paired_window_resumes_after_new_assistant_with_tool_call(): "role": "assistant", "content": "", "tool_calls": [ - {"id": "B", "type": "function", "function": {"name": "g", "arguments": "{}"}} + { + "id": "B", + "type": "function", + "function": {"name": "g", "arguments": "{}"}, + } ], }, {