| Index: tests/corelib/regexp/invalid-range-in-class_test.dart
|
| diff --git a/tests/corelib/regexp/invalid-range-in-class_test.dart b/tests/corelib/regexp/invalid-range-in-class_test.dart
|
| index 001ebdd5815ab95b35e3c568cb73ae59a0df233a..4669858902a1c2f6c5d7dfeeaaceebfe27ef7291 100644
|
| --- a/tests/corelib/regexp/invalid-range-in-class_test.dart
|
| +++ b/tests/corelib/regexp/invalid-range-in-class_test.dart
|
| @@ -44,7 +44,7 @@ void main() {
|
| // the grammar, and as such in the following regex a-z cannot be matched as a range.
|
| shouldBe(new RegExp(r"[\d-a-z]+").firstMatch("az1-3y"), ["az1-3"]);
|
|
|
| - // An escaped hypen should not be confused for an invalid range.
|
| + // An escaped hyphen should not be confused for an invalid range.
|
| shouldBe(new RegExp(r"[\d\-x]+").firstMatch("1-3xy"), ["1-3x"]);
|
| shouldBe(new RegExp(r"[x\-\d]+").firstMatch("1-3xy"), ["1-3x"]);
|
| shouldBe(new RegExp(r"[\d\-\d]+").firstMatch("1-3xy"), ["1-3"]);
|
|
|