venantius / ultra

A Leiningen plugin for a superior development environment
Eclipse Public License 1.0
1.24k stars 35 forks source link

Ultra assert-expr changes `:actual` value #105

Open Deraen opened 5 years ago

Deraen commented 5 years ago

Clojure.test built-in assert-expr will set the :actual value as list of the predicate (=) and the values: https://github.com/clojure/clojure/blob/master/src/clj/clojure/test.clj#L450

Ultra just sets the value as list of the values: https://github.com/venantius/ultra/blob/master/src/ultra/test.clj#L22 without the predicate.

This breaks third party reporters like Eftest: https://github.com/weavejester/eftest/issues/67