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

Unified Diff: tests/corelib/regexp/constructor_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/regexp/constructor_test.dart
diff --git a/tests/corelib/regexp/constructor_test.dart b/tests/corelib/regexp/constructor_test.dart
index 54d8df1256671371c5570a1973bdc6b72af13955..046cf897e33226e17ff627d809dd3c19039ffc02 100644
--- a/tests/corelib/regexp/constructor_test.dart
+++ b/tests/corelib/regexp/constructor_test.dart
@@ -34,7 +34,10 @@ void main() {
// shouldBeTrue(identical(re, new RegExp(r"abc")));
// shouldBeTrue(identical(re, new RegExp(r"abc", caseSensitive: true, multiLine: false)));
- shouldBeFalse(identical(re, new RegExp(r"abc", caseSensitive: false, multiLine: true)));
- shouldBeFalse(identical(re, new RegExp(r"abc", caseSensitive: true, multiLine: true)));
- shouldBeFalse(identical(re, new RegExp(r"abc", caseSensitive: false, multiLine: false)));
+ shouldBeFalse(
+ identical(re, new RegExp(r"abc", caseSensitive: false, multiLine: true)));
+ shouldBeFalse(
+ identical(re, new RegExp(r"abc", caseSensitive: true, multiLine: true)));
+ shouldBeFalse(identical(
+ re, new RegExp(r"abc", caseSensitive: false, multiLine: false)));
}

Powered by Google App Engine
This is Rietveld 408576698