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

Unified Diff: tests/compiler/dart2js/serialization/reserialization_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/serialization/reserialization_test.dart
diff --git a/tests/compiler/dart2js/serialization/reserialization_test.dart b/tests/compiler/dart2js/serialization/reserialization_test.dart
index 2f56e2e735c07e4471cd0fd41d53f23ae4c769d4..59fae6c9ce0938d4f5df01c870941c14de366701 100644
--- a/tests/compiler/dart2js/serialization/reserialization_test.dart
+++ b/tests/compiler/dart2js/serialization/reserialization_test.dart
@@ -55,15 +55,15 @@ Future testReserialization(Uri entryPoint) async {
LibraryElement library2 = libraries2.firstWhere((LibraryElement library2) {
return library2.canonicalUri == library1.canonicalUri;
});
- Expect.isNotNull(library2,
- "No library found for ${library1.canonicalUri}.");
+ Expect.isNotNull(
+ library2, "No library found for ${library1.canonicalUri}.");
checkLibraryContent('library1', 'library2', 'library', library1, library2);
LibraryElement library3 = libraries3.firstWhere((LibraryElement library3) {
return library3.canonicalUri == library1.canonicalUri;
});
- Expect.isNotNull(library3,
- "No library found for ${library1.canonicalUri}.");
+ Expect.isNotNull(
+ library3, "No library found for ${library1.canonicalUri}.");
checkLibraryContent('library1', 'library3', 'library', library1, library3);
}

Powered by Google App Engine
This is Rietveld 408576698