| Index: tests/corelib/regexp/range-bound-ffff_test.dart
 | 
| diff --git a/tests/corelib/regexp/range-bound-ffff_test.dart b/tests/corelib/regexp/range-bound-ffff_test.dart
 | 
| index 29d5a771f1fb072198a7cb47060cc8dd19296801..c9d8c62d49b262d793005900272b355977f83469 100644
 | 
| --- a/tests/corelib/regexp/range-bound-ffff_test.dart
 | 
| +++ b/tests/corelib/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"]);
 | 
|  }
 | 
| 
 |