| Index: pkg/unittest/lib/src/utils.dart
|
| diff --git a/pkg/unittest/lib/src/utils.dart b/pkg/unittest/lib/src/utils.dart
|
| index 380a119b512b62a4f55751b7fe6c3cc3afa52c16..ef724e3d82344574a750896451fe96cf5a9db333 100644
|
| --- a/pkg/unittest/lib/src/utils.dart
|
| +++ b/pkg/unittest/lib/src/utils.dart
|
| @@ -59,7 +59,7 @@ class Pair<E, F> {
|
|
|
| String toString() => '($first, $last)';
|
|
|
| - bool operator==(other) {
|
| + bool operator ==(other) {
|
| if (other is! Pair) return false;
|
| return other.first == first && other.last == last;
|
| }
|
|
|