Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Unified Diff: tests/lib/async/event_helper.dart

Issue 18841002: Address more bot-redness. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/lib/lib.status » ('j') | tests/lib/lib.status » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}";
« no previous file with comments | « no previous file | tests/lib/lib.status » ('j') | tests/lib/lib.status » ('J')

Powered by Google App Engine
This is Rietveld 408576698