Redundant use of `equals(...)` across test code
Open
cleanup
P3
- Dominant language
- Dart
- Stars
- 1.7k
- Forks
- 404
- Avg merge
- 6d 17h
- Merged PRs (30d)
- 18
Description
`equals` is the default matcher, so we do not need to specify this everywhere.
e.g.
`expect(myVar, equals('hello'))` ==> `expect(myVar, 'hello')`
Contributor guide
Assessment
This issue has not been assessed yet.