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

Unified Diff: tests/corelib/hashcode_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/corelib/hashcode_test.dart
diff --git a/tests/corelib/hashcode_test.dart b/tests/corelib/hashcode_test.dart
index 535ad6734fc059d3f5dcf17f986ce3dd348e7a80..ba452759175452ce1e2f16024f82e17e97e0eea7 100644
--- a/tests/corelib/hashcode_test.dart
+++ b/tests/corelib/hashcode_test.dart
@@ -11,11 +11,11 @@ class Override {
int foo() => hash; // Just some function that can be closurized.
- bool operator==(Object other) =>
+ bool operator ==(Object other) =>
other is Override && (other as Override).hash == hash;
}
-int bar() => 42; // Some global function.
+int bar() => 42; // Some global function.
main() {
var o = new Object();

Powered by Google App Engine
This is Rietveld 408576698