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

Unified Diff: tests/corelib_strong/regexp/range-bound-ffff_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/regexp/range-bound-ffff_test.dart
diff --git a/tests/corelib_strong/regexp/range-bound-ffff_test.dart b/tests/corelib_strong/regexp/range-bound-ffff_test.dart
index 29d5a771f1fb072198a7cb47060cc8dd19296801..c9d8c62d49b262d793005900272b355977f83469 100644
--- a/tests/corelib_strong/regexp/range-bound-ffff_test.dart
+++ b/tests/corelib_strong/regexp/range-bound-ffff_test.dart
@@ -27,8 +27,9 @@ import 'package:expect/expect.dart';
void main() {
description(
- 'Test for rdar:/68455379, a case-insensitive regex containing a character class containing a range with an upper bound of \uFFFF can lead to an infinite-loop.'
- );
+ 'Test for rdar:/68455379, a case-insensitive regex containing a character class containing a range with an upper bound of \uFFFF can lead to an infinite-loop.');
- shouldBe(firstMatch("A", new RegExp(r"[\u0001-\uFFFF]", caseSensitive: false)), ["A"]);
+ shouldBe(
+ firstMatch("A", new RegExp(r"[\u0001-\uFFFF]", caseSensitive: false)),
+ ["A"]);
}

Powered by Google App Engine
This is Rietveld 408576698