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

Unified Diff: packages/quiver/test/pattern/glob_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
« no previous file with comments | « packages/quiver/test/mirrors_test.dart ('k') | packages/quiver/test/streams/all_tests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"]);
« no previous file with comments | « packages/quiver/test/mirrors_test.dart ('k') | packages/quiver/test/streams/all_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698