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

Unified Diff: test/parse_test.dart

Issue 861313003: glob pkg: fixed test, updated homepage url, added SDK constraint (Closed) Base URL: https://github.com/dart-lang/glob.git@master
Patch Set: nits Created 5 years, 11 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 | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/parse_test.dart
diff --git a/test/parse_test.dart b/test/parse_test.dart
index 498d0356d9292832113417b4a509feca66f36afa..11bf1f5f2331a0a457cc7e21480ba96bdf0de0b5 100644
--- a/test/parse_test.dart
+++ b/test/parse_test.dart
@@ -25,8 +25,8 @@ void main() {
expect("fo2", contains(bang));
var caret = new Glob("fo[^a-z]");
- expect("foo", isNot(contains(bang)));
- expect("fo2", contains(bang));
+ expect("foo", isNot(contains(caret)));
+ expect("fo2", contains(caret));
});
test("supports backslash-escaped characters", () {
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698