Skip to content

Commit

Permalink
fixup! refactor: update test files to use ParsedMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
dsp-ant committed Mar 3, 2025
1 parent 05fc4f7 commit 2e3388b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 74 deletions.
72 changes: 0 additions & 72 deletions tests/issues/test_201_client_hangs_on_logging.py

This file was deleted.

4 changes: 2 additions & 2 deletions tests/server/test_lifespan.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async def run_server():

# Get response and verify
response = await receive_stream2.receive()
assert response.root.result["content"][0]["text"] == "true"
assert response.root.root.result["content"][0]["text"] == "true"

# Cancel server task
tg.cancel_scope.cancel()
Expand Down Expand Up @@ -220,7 +220,7 @@ async def run_server():

# Get response and verify
response = await receive_stream2.receive()
assert response.root.result["content"][0]["text"] == "true"
assert response.root.root.result["content"][0]["text"] == "true"

# Cancel server task
tg.cancel_scope.cancel()

0 comments on commit 2e3388b

Please sign in to comment.