gfredericks / test.chuck

A utility library for test.check
Eclipse Public License 1.0
215 stars 26 forks source link

Fix clojure-test-output-test by tweaking the expected output #36

Closed nberger closed 8 years ago

nberger commented 8 years ago

The :fail and :shrunk :smallest entries in a failure report have changed to be a map of binding name to bound values since #30 when using for-all and checking macros. The test clojure-test-output-test was originally written with the old output layout where it was just the vector of bound values, so this fixes it.

Fixes #31