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

Unified Diff: utils/pub/oauth2.dart

Issue 12191008: Get the pub oauth2 test passing locally. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
Index: utils/pub/oauth2.dart
diff --git a/utils/pub/oauth2.dart b/utils/pub/oauth2.dart
index 616b63891ea8a9b0d21f4eae64454555a9307d20..97114523b1e8f30fa1e7ec0ac939a1e443a864cd 100644
--- a/utils/pub/oauth2.dart
+++ b/utils/pub/oauth2.dart
@@ -100,7 +100,7 @@ Future<Client> _getClient(SystemCache cache) {
if (credentials == null) return _authorize();
var client = new Client(_identifier, _secret, credentials,
- httpClient: curlClient);
+ httpClient: httpClient);
_saveCredentials(cache, client.credentials);
return client;
});

Powered by Google App Engine
This is Rietveld 408576698