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
While the verify.Values library has served us well it shows its age in that it doesn't show the private fields that are necessary for debugging.
I'm going to create a PR to replace all calls of verify.Values with require.Equal. The call arguments have to be reversed since verify.Values(t, "", got, want) maps to require.Equal(t, want, got)
The text was updated successfully, but these errors were encountered:
While the
verify.Values
library has served us well it shows its age in that it doesn't show the private fields that are necessary for debugging.I'm going to create a PR to replace all calls of
verify.Values
withrequire.Equal
. The call arguments have to be reversed sinceverify.Values(t, "", got, want)
maps torequire.Equal(t, want, got)
The text was updated successfully, but these errors were encountered: