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

Unified Diff: tests/corelib_strong/string_pattern_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_pattern_test.dart
diff --git a/tests/corelib_strong/string_pattern_test.dart b/tests/corelib_strong/string_pattern_test.dart
index 4229617ff1a7551f3c34dc3db6772e5aa25c75a9..9a4555e8e1496968e9b3c354ad3613a4dd2af663 100644
--- a/tests/corelib_strong/string_pattern_test.dart
+++ b/tests/corelib_strong/string_pattern_test.dart
@@ -49,8 +49,7 @@ testTwoMatches() {
for (var match in matches) {
count++;
Expect.equals(str.indexOf('hello', start), match.start);
- Expect.equals(
- str.indexOf('hello', start) + helloPattern.length, match.end);
+ Expect.equals(str.indexOf('hello', start) + helloPattern.length, match.end);
Expect.equals(helloPattern, match.pattern);
Expect.equals(str, match.input);
Expect.equals(helloPattern, match[0]);

Powered by Google App Engine
This is Rietveld 408576698