Skip to content

Commit

Permalink
make tests more realistic
Browse files Browse the repository at this point in the history
  • Loading branch information
hbcarlos committed Oct 18, 2023
1 parent 61cc25c commit 9c0b522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def fn(
await sleep(0.2)

clients = []
n = 100
n = 50
for _ in range(n):
doc = YUnicode()
clients.append(create_task(fn(file_format, file_type, file_path, doc, 1)))
Expand Down Expand Up @@ -63,7 +63,7 @@ async def fn(

await sleep(0.2)

n = 100
n = 50
content = "test"
res = len(content) * n

Expand Down Expand Up @@ -96,7 +96,7 @@ async def fn(
doc.append_cell(nbformat.v4.new_code_cell(content))
await sleep(0.2)

n = 100
n = 50
clients = []
for _ in range(n):
doc = YNotebook()
Expand Down

0 comments on commit 9c0b522

Please sign in to comment.