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
It would be helpful to have analyzers that suggest converting Is.EqualTo(false) to Is.False and Is.EqualTo(true) to Is.True. It should probably only flag this when using the false/true keywords within Is.EqualTo, not when those values are coming from variables, since the variables could be a design choice to be reused between setup and assertion.
The text was updated successfully, but these errors were encountered:
It would be helpful to have analyzers that suggest converting
Is.EqualTo(false)
toIs.False
andIs.EqualTo(true)
toIs.True
. It should probably only flag this when using thefalse
/true
keywords withinIs.EqualTo
, not when those values are coming from variables, since the variables could be a design choice to be reused between setup and assertion.The text was updated successfully, but these errors were encountered: