Skip to content

Commit

Permalink
magic numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
vidartf authored Aug 20, 2021
1 parent d861527 commit 52e1892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/tests/test_terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ async def test_culling(jp_server_config, jp_fetch):
last_activity = term['last_activity']

culled = False
for i in range(10): # Culling should occur in a few seconds
for i in range(CULL_TIMEOUT + CULL_INTERVAL):
try:
resp = await jp_fetch(
'api', 'terminals', term_1,
Expand Down

0 comments on commit 52e1892

Please sign in to comment.