mirror of
https://github.com/vale981/stream
synced 2025-03-04 17:41:38 -05:00
correct syntax error
This commit is contained in:
parent
b88261e580
commit
2494c546b1
1 changed files with 2 additions and 2 deletions
|
@ -220,8 +220,8 @@
|
||||||
(testing "stopping the process"
|
(testing "stopping the process"
|
||||||
(let [prom (api/wait-for!
|
(let [prom (api/wait-for!
|
||||||
(:supervisor proc)
|
(:supervisor proc)
|
||||||
:matcher (or (= (:event %1) :inactive)
|
:matcher #(or (= (:event %1) :inactive)
|
||||||
(= (:event %1) :failed)))]
|
(= (:event %1) :failed)))]
|
||||||
(api/start-process! proc)
|
(api/start-process! proc)
|
||||||
(api/stop-process! proc)
|
(api/stop-process! proc)
|
||||||
(is (not (= :timeout @prom)))
|
(is (not (= :timeout @prom)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue