Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We write (+ 2 3) := 5 , but clojure.test users write (t/is (= 5 (+ 2 3))) , i.e. the expected/actual ordering is the other way around. This commit reorders the arguments to match clojure.test convention, which is important for interop with the ecosystem. E.g. matcher-combinators match? creates a diff like (mismatch (expected 2) (actual 1)) and if we don't order expected/actual correctly the error will be confusing at best.
- Loading branch information