We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As subj states looks like strings in struct fields are not compared:
if diff := deep.Equal(struct{ foo string }{foo: "aa"}, struct{ foo string }{foo: "aab"}); diff != nil { t.Error(diff) }
will pass without error
The text was updated successfully, but these errors were encountered:
Does it work if you set CompareUnexportedFields = true?
CompareUnexportedFields = true
Sorry, something went wrong.
Oh, sorry, didn't know that it is disabled by default :) Please resolve the issue. Thank you
No branches or pull requests
As subj states looks like strings in struct fields are not compared:
will pass without error
The text was updated successfully, but these errors were encountered: