From 988d5bfb027db493d565d77a604588516b98adab Mon Sep 17 00:00:00 2001 From: David Cerezo Inigo Date: Fri, 10 Apr 2020 12:47:14 -0700 Subject: [PATCH] Fixed assoc-injector-result signature spec to receive a nilable sequence of steps --- src/fonda/execute/specs.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fonda/execute/specs.cljc b/src/fonda/execute/specs.cljc index ee58937..6b01466 100644 --- a/src/fonda/execute/specs.cljc +++ b/src/fonda/execute/specs.cljc @@ -74,4 +74,4 @@ (s/fdef fonda.execute/assoc-injector-result :args (s/cat :fonda-ctx ::fonda-context - :res (s/or :step ::core/step :steps ::core/steps))) + :res (s/nilable (s/or :step ::core/step :steps ::core/steps))))