浏览代码

try to fix another flakyness

Rodja Trappe 2 年之前
父节点
当前提交
bfcaae8f06
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/test_auto_context.py

+ 1 - 1
tests/test_auto_context.py

@@ -92,7 +92,7 @@ def test_autoupdate_on_async_event_handler(screen: Screen):
 def test_autoupdate_on_async_timer_callback(screen: Screen):
     async def update():
         ui.label('1')
-        await asyncio.sleep(2.0)
+        await asyncio.sleep(3.0)
         ui.label('2')
     ui.label('0')
     ui.timer(2.0, update, once=True)