Skip to content

Commit 873e175

Browse files
committed
Fixed failing test
1 parent 5e36f06 commit 873e175

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jupyter_server_documents/tests/test_outputs_manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def test_stream():
4747
file_id = str(uuid4())
4848
cell_id = str(uuid4())
4949
for s in streams:
50-
op.write_stream(file_id, cell_id, s)
50+
placeholder = op.write_output(file_id, cell_id, s)
51+
op.write_stream(file_id, cell_id, s, placeholder)
5152
assert op.get_stream(file_id, cell_id) == text
5253

5354
def test_display_data():

0 commit comments

Comments
 (0)