We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(def vector' (fn [& xs] (apply vector xs))) (tests (vector 1 2 3) := [1 2 3] (vector' 1 2 3) := [1 2 3]) ✅✅ (tests (vector 1 2 3) := [1 2 3] (def vector' (fn [& xs] (apply vector xs))) (vector' 1 2 3) := [1 2 3]) ✅ ERROR in () (:) expected: (hyperfiddle.rcf/= (vector' 1 2 3) [1 2 3]) actual: clojure.lang.ArityException: Wrong number of args (3) passed to: dustin.y2022.missionary-faq/eval8620/vector'--8625
The text was updated successfully, but these errors were encountered:
Fixed in 83b90b4
Sorry, something went wrong.
reopening for unit tests
No branches or pull requests
The text was updated successfully, but these errors were encountered: