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
both (+ 1 2) and 2 are stored in non-expanded form so they can be printed in the report in case the test fails. The trick used to do this does not work for byte compiled tests.
Two solutions that might work are
use more trickery in expect and save the original expression in the docstrings of the lambda functions.
stop using trickery in expect and use proper objects/structs instead.
The text was updated successfully, but these errors were encountered:
First reported in #218 (comment) .
For
expect
forms likeboth
(+ 1 2)
and2
are stored in non-expanded form so they can be printed in the report in case the test fails. The trick used to do this does not work for byte compiled tests.Two solutions that might work are
The text was updated successfully, but these errors were encountered: