mirror of
https://github.com/vale981/stream
synced 2025-03-05 10:01:39 -05:00
remove excessive timeouts
This commit is contained in:
parent
7724e0c100
commit
278d3b201e
1 changed files with 2 additions and 2 deletions
|
@ -166,13 +166,13 @@
|
|||
|
||||
(testing "waiting for the process to start"
|
||||
(let [prom (api/wait-for!
|
||||
(:supervisor proc) :active 100000)]
|
||||
(:supervisor proc) :active 10000)]
|
||||
(api/start-process! proc)
|
||||
(is (not (= :timeout @prom)))))
|
||||
|
||||
(testing "waiting for the process to fail"
|
||||
(let [prom (api/wait-for!
|
||||
(:supervisor proc) :failed 100000)]
|
||||
(:supervisor proc) :failed 10000)]
|
||||
(api/start-process! proc)
|
||||
(is (not (= :timeout @prom)))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue