| Index: tests/lib/async/event_helper.dart
|
| diff --git a/tests/lib/async/event_helper.dart b/tests/lib/async/event_helper.dart
|
| index d0e5b82133abf53db15a42e33706f1170f5721ff..42a6c285ef433de5bc8c0c48de35cc2c5edf4238 100644
|
| --- a/tests/lib/async/event_helper.dart
|
| +++ b/tests/lib/async/event_helper.dart
|
| @@ -22,7 +22,7 @@ class DataEvent implements Event {
|
| bool operator==(Object other) {
|
| if (other is! DataEvent) return false;
|
| DataEvent otherEvent = other;
|
| - return data == other.data;
|
| + return data == otherEvent.data;
|
| }
|
|
|
| String toString() => "DataEvent: $data";
|
| @@ -40,7 +40,7 @@ class ErrorEvent implements Event {
|
| bool operator==(Object other) {
|
| if (other is! ErrorEvent) return false;
|
| ErrorEvent otherEvent = other;
|
| - return error == other.error;
|
| + return error == otherEvent.error;
|
| }
|
|
|
| String toString() => "ErrorEvent: ${error}";
|
|
|