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

Unified Diff: test/pretty_print_unminified_test.dart

Issue 840133003: matcher: fixed status file, formatting, tweaks to readme (Closed) Base URL: https://github.com/dart-lang/matcher.git@master
Patch Set: nits Created 5 years, 11 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 | « test/pretty_print_test.dart ('k') | test/prints_matcher_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/pretty_print_unminified_test.dart
diff --git a/test/pretty_print_unminified_test.dart b/test/pretty_print_unminified_test.dart
index 81e7db52252274fdfdaed45cfad08b0b93504ca4..c8b2035dd9e6b66c44a7d754551453fc3c87d7a2 100644
--- a/test/pretty_print_unminified_test.dart
+++ b/test/pretty_print_unminified_test.dart
@@ -42,8 +42,8 @@ void main() {
});
test('with a custom [toString] and a private name', () {
- expect(prettyPrint(new _PrivateName()),
- equals('?:<string representation>'));
+ expect(
+ prettyPrint(new _PrivateName()), equals('?:<string representation>'));
});
});
@@ -54,8 +54,7 @@ void main() {
});
test("that's not a list and has a private name", () {
- expect(prettyPrint(new _PrivateNameIterable()),
- equals("?:[1, 2, 3]"));
+ expect(prettyPrint(new _PrivateNameIterable()), equals("?:[1, 2, 3]"));
});
});
}
« no previous file with comments | « test/pretty_print_test.dart ('k') | test/prints_matcher_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698