You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
=> (pinpoint (s/coll-of integer?) [:foo])
[PINPOINTER] Failed to analyze the spec errors, and will fall back to s/explain-printer
In: [0] val: :foo fails predicate: integer?
nil
=> (pinpoint (s/coll-of integer?) [:foo] {:fallback-on-errorfalse})
IllegalArgumentException Don't know how to create ISeq from: clojure.lang.Symbol clojure.lang.RT.seqFrom (RT.java:550)
=>
This is due to CLJ-2168. A workaround for the issue is to wrap the predicate in s/spec:
This is due to CLJ-2168. A workaround for the issue is to wrap the predicate in
s/spec
:The text was updated successfully, but these errors were encountered: