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
We have a number of No calls to throwing functions occur within 'try' expression warnings in our unit tests. This is because multiple Swift Packages that we import define functions with the same name, and depending on the order they are imported a different version can be used. What's worse is that the implementations aren't equivalent 😭 it caused a bug in the main target with event signing (can't find the details now) and this bug might sneak back in if we don't fix these warnings.
The text was updated successfully, but these errors were encountered:
@mplorentz I used to see these warnings, too, but I'm not any more, so I'm closing this. Maybe this was fixed when we removed some dependencies we no longer needed? Or maybe when someone just fixed them.
We have a number of
No calls to throwing functions occur within 'try' expression
warnings in our unit tests. This is because multiple Swift Packages that we import define functions with the same name, and depending on the order they are imported a different version can be used. What's worse is that the implementations aren't equivalent 😭 it caused a bug in the main target with event signing (can't find the details now) and this bug might sneak back in if we don't fix these warnings.The text was updated successfully, but these errors were encountered: