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

Unified Diff: tests/corelib_strong/string_trim2_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_strong/string_trim2_test.dart
diff --git a/tests/corelib_strong/string_trim2_test.dart b/tests/corelib_strong/string_trim2_test.dart
index 3a4068dbe5ee40925ee85d1eddf3c169d12e9fdc..eb7956afa4b8fc95981e1050130b8e460cfe94cf 100644
--- a/tests/corelib_strong/string_trim2_test.dart
+++ b/tests/corelib_strong/string_trim2_test.dart
@@ -41,8 +41,8 @@ main() {
Expect.equals("a", ("a" + c).trim(), "a-$name");
Expect.equals("a", (c + "a").trim(), "$name-a");
Expect.equals("a", (c + c + "a" + c + c).trim(), "$name around");
- Expect.equals("a" + c + "a", (c + c + "a" + c + "a" + c + c).trim(),
- "$name many");
+ Expect.equals(
+ "a" + c + "a", (c + c + "a" + c + "a" + c + c).trim(), "$name many");
}
Expect.equals("", new String.fromCharCodes(WHITESPACE).trim(), "ALL");
}

Powered by Google App Engine
This is Rietveld 408576698