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
The CultureInfo parameter for such overloads is annotated as nullable incorrectly. A null value isn't currently allowed and we will throw when we have null.
When we get null, we throw AssertFailedException, but I think ArgumentNullException is a better fit. It's not really that the assert is failing.
The text was updated successfully, but these errors were encountered:
null
value isn't currently allowed and we will throw when we havenull
.null
, we throwAssertFailedException
, but I think ArgumentNullException is a better fit. It's not really that the assert is failing.The text was updated successfully, but these errors were encountered: