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
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
Assert calls can disappear in optimized code, as well as not work quite as expected in many cases
(e.g. assert (foo == bar, "error") === assert (False, "error") === assert True )
We should scrub out assert and unit tests that call .assert*.
The text was updated successfully, but these errors were encountered:
Assert calls can disappear in optimized code, as well as not work quite as expected in many cases
(e.g.
assert (foo == bar, "error")
===assert (False, "error")
===assert True
)We should scrub out
assert
and unit tests that call.assert*
.The text was updated successfully, but these errors were encountered: