Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Dec 2, 2024
1 parent dd6987c commit 919625f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pycrdt_yjs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def test_ypy_yjs_1(yws_server, yjs_client):
ydoc, Websocket(websocket, room_name)
):
output_text = ynotebook.ycells[0]["outputs"][0]["text"]
assert output_text.to_py() == ["Hello,"]
assert output_text.to_py() == "Hello,"
event = Event()

def callback(_event):
Expand All @@ -101,7 +101,7 @@ def callback(_event):
with move_on_after(10):
await event.wait()

assert output_text.to_py() == ["Hello,", " World!"]
assert output_text.to_py() == "Hello,", " World!"


def test_plotly_renderer():
Expand Down

0 comments on commit 919625f

Please sign in to comment.