From 0d191dcf90b5a216cdcacdab6db2cd7654eaea11 Mon Sep 17 00:00:00 2001 From: Maxime Liquet <35924738+maximlt@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:28:27 +0200 Subject: [PATCH] increase sleep duration (#967) --- tests/testreactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testreactive.py b/tests/testreactive.py index 656d2c23..e53e56ce 100644 --- a/tests/testreactive.py +++ b/tests/testreactive.py @@ -608,7 +608,7 @@ def gen(val): async def test_reactive_gen_with_dep(): def gen(i): yield i+1 - time.sleep(0.05) + time.sleep(0.1) yield i+2 irx = rx(0)