Skip to content

Commit 0edda1e

Browse files
committed
format snapshot
1 parent 359936f commit 0edda1e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/test_agent.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,13 @@ def validate_output(ctx: RunContext[None], o: Foo, partial: bool) -> Foo:
406406
outputs = [output async for output in result.stream_output(debounce_by=None)]
407407

408408
assert outputs[-1] == Foo(a=42, b='foo')
409-
assert call_log == snapshot([(Foo(a=42, b='f'), True), (Foo(a=42, b='foo'), True), (Foo(a=42, b='foo'), False)])
409+
assert call_log == snapshot(
410+
[
411+
(Foo(a=42, b='f'), True),
412+
(Foo(a=42, b='foo'), True),
413+
(Foo(a=42, b='foo'), False),
414+
]
415+
)
410416

411417

412418
def test_plain_response_then_tuple():

0 commit comments

Comments
 (0)