Skip to content

Commit 919625f

Browse files
committed
Fix tests
1 parent dd6987c commit 919625f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_pycrdt_yjs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def test_ypy_yjs_1(yws_server, yjs_client):
9090
ydoc, Websocket(websocket, room_name)
9191
):
9292
output_text = ynotebook.ycells[0]["outputs"][0]["text"]
93-
assert output_text.to_py() == ["Hello,"]
93+
assert output_text.to_py() == "Hello,"
9494
event = Event()
9595

9696
def callback(_event):
@@ -101,7 +101,7 @@ def callback(_event):
101101
with move_on_after(10):
102102
await event.wait()
103103

104-
assert output_text.to_py() == ["Hello,", " World!"]
104+
assert output_text.to_py() == "Hello,", " World!"
105105

106106

107107
def test_plotly_renderer():

0 commit comments

Comments
 (0)