Skip to content

Commit 69e05fd

Browse files
committed
reduce length of timeout for test_threaded_run
Signed-off-by: Nathan Goldbaum <nathan.goldbaum@gmail.com>
1 parent 07ce7cb commit 69e05fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csp/tests/test_engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ def g(count: int) -> csp.ts[int]:
13971397
self.assertEqual(len(res), 5)
13981398

13991399
# midway stop
1400-
runner = csp.run_on_thread(g, 50000, starttime=datetime.utcnow(), endtime=timedelta(minutes=30), realtime=True)
1400+
runner = csp.run_on_thread(g, 50000, starttime=datetime.utcnow(), endtime=timedelta(minutes=1), realtime=True)
14011401
import time
14021402

14031403
time.sleep(1)

0 commit comments

Comments
 (0)