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

Unified Diff: pkg/oauth2/test/utils.dart

Issue 17090006: Change MatchState to Map. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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 | « pkg/http/test/utils.dart ('k') | pkg/scheduled_test/lib/src/scheduled_future_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/oauth2/test/utils.dart
===================================================================
--- pkg/oauth2/test/utils.dart (revision 24041)
+++ pkg/oauth2/test/utils.dart (working copy)
@@ -54,7 +54,7 @@
class _AuthorizationException extends TypeMatcher {
const _AuthorizationException() : super("AuthorizationException");
- bool matches(item, MatchState matchState) =>
+ bool matches(item, Map matchState) =>
item is oauth2.AuthorizationException;
}
@@ -67,6 +67,6 @@
class _ExpirationException extends TypeMatcher {
const _ExpirationException() : super("ExpirationException");
- bool matches(item, MatchState matchState) =>
+ bool matches(item, Map matchState) =>
item is oauth2.ExpirationException;
}
« no previous file with comments | « pkg/http/test/utils.dart ('k') | pkg/scheduled_test/lib/src/scheduled_future_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698