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

Unified Diff: tests/compiler/dart2js_extra/runtime_type_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/runtime_type_test.dart
diff --git a/tests/compiler/dart2js_extra/runtime_type_test.dart b/tests/compiler/dart2js_extra/runtime_type_test.dart
index 8f0b0f49d300991c8fa35fa7448a0f4bff7f4ce9..c307ef4dd1925a22128754584ebe215f376a4392 100644
--- a/tests/compiler/dart2js_extra/runtime_type_test.dart
+++ b/tests/compiler/dart2js_extra/runtime_type_test.dart
@@ -21,10 +21,10 @@ void main() {
Expect.equals('C<bool>', new C<bool>().runtimeType.toString());
Expect.equals('D', new D().runtimeType.toString());
Expect.equals('D<dynamic, int, dynamic>',
- new D<dynamic, int, dynamic>().runtimeType.toString());
+ new D<dynamic, int, dynamic>().runtimeType.toString());
D d = new D<dynamic, D, D<dynamic, dynamic, int>>();
- Expect.equals('D<dynamic, D, D<dynamic, dynamic, int>>',
- d.runtimeType.toString());
+ Expect.equals(
+ 'D<dynamic, D, D<dynamic, dynamic, int>>', d.runtimeType.toString());
Expect.equals(r'C<Class$With$Dollar>',
- new C<Class$With$Dollar>().runtimeType.toString());
+ new C<Class$With$Dollar>().runtimeType.toString());
}
« no previous file with comments | « tests/compiler/dart2js_extra/regress/4515_3_test.dart ('k') | tests/compiler/dart2js_extra/source_mapping_crash_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698