chore: Replace reflect.DeepEqual with cmp.Equal in tests by jferrl · Pull Request #3691 · google/go-github

@jferrl

Updated multiple test files to use github.com/google/go-cmp/cmp.Equal instead of reflect.DeepEqual for value comparisons. This improves test output readability and consistency across the codebase.

alexandear

@jferrl

Configured the forbidigo linter in .golangci.yml to forbid the use of reflect.DeepEqual, recommending cmp.Equal instead. This helps ensure more reliable equality checks in the codebase.

alexandear

@gmlewis