remove excessive timeouts

This commit is contained in:
Valentin Boettcher 2020-08-02 11:39:48 +02:00
parent 7724e0c100
commit 278d3b201e

View file

@ -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)))))