| Index: packages/quiver/test/pattern/glob_test.dart
|
| diff --git a/packages/quiver/test/pattern/glob_test.dart b/packages/quiver/test/pattern/glob_test.dart
|
| index 47f825a71cb4a27625062f89749e3b053be5e89d..29235839605e7c7b56241e50973c62a3a5a68615 100644
|
| --- a/packages/quiver/test/pattern/glob_test.dart
|
| +++ b/packages/quiver/test/pattern/glob_test.dart
|
| @@ -20,8 +20,7 @@ import 'package:quiver/pattern.dart';
|
| main() {
|
| group('Glob', () {
|
| test('should match "*" against sequences of word chars', () {
|
| - expectGlob("*.html",
|
| - matches: [
|
| + expectGlob("*.html", matches: [
|
| "a.html",
|
| "_-\a.html",
|
| r"^$*?.html",
|
| @@ -30,8 +29,11 @@ main() {
|
| "\u21ad.html",
|
| "♥.html",
|
| "\u2665.html"
|
| - ],
|
| - nonMatches: ["a.htm", "a.htmlx", "/a.html"]);
|
| + ], nonMatches: [
|
| + "a.htm",
|
| + "a.htmlx",
|
| + "/a.html"
|
| + ]);
|
| expectGlob("foo.*",
|
| matches: ["foo.html"],
|
| nonMatches: ["afoo.html", "foo/a.html", "foo.html/a"]);
|
|
|