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
As noted here, there's a problem with some assertions not always respecting a custom failed assertion error message. This problem is different (and more widespread) than the flag transfer problem mentioned in #904.
The culprit for the above example is this line. If the msg argument isn't provided, then it needs to look at the value of the msg flag instead.
Many other occurrences of this issue are similar to the above example. Also there are some assertions that fail to pass on the msg at all to internal assertions or errors, but #922 coincidentally fixes those occurrences.
The text was updated successfully, but these errors were encountered:
Something I'd like to just throw out there: is it worth fixing these issues given that if we implement #585 anything like it currently looks, then messaging will be centralised and automated, and any efforts will be refactored away?
As noted here, there's a problem with some assertions not always respecting a custom failed assertion error message. This problem is different (and more widespread) than the flag transfer problem mentioned in #904.
Here's an example:
The culprit for the above example is this line. If the
msg
argument isn't provided, then it needs to look at the value of themsg
flag instead.Many other occurrences of this issue are similar to the above example. Also there are some assertions that fail to pass on the
msg
at all to internal assertions or errors, but #922 coincidentally fixes those occurrences.The text was updated successfully, but these errors were encountered: