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

Unified Diff: sdk/lib/_internal/pub/test/test_pub.dart

Issue 602983002: Remove unused parameter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « no previous file | sdk/lib/_internal/pub_generated/test/test_pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/test_pub.dart
diff --git a/sdk/lib/_internal/pub/test/test_pub.dart b/sdk/lib/_internal/pub/test/test_pub.dart
index 05b05d841effa3b905144981f163794f9d6e0024..bb3f6a21915bf76fb9ff4cad88e4705bd1f64d5c 100644
--- a/sdk/lib/_internal/pub/test/test_pub.dart
+++ b/sdk/lib/_internal/pub/test/test_pub.dart
@@ -412,11 +412,11 @@ void scheduleSymlink(String target, String symlink) {
/// matching that object, which can be a literal JSON object or any other
/// [Matcher].
void schedulePub({List args, output, error, outputJson,
- Future<Uri> tokenEndpoint, int exitCode: exit_codes.SUCCESS}) {
+ int exitCode: exit_codes.SUCCESS}) {
// Cannot pass both output and outputJson.
assert(output == null || outputJson == null);
- var pub = startPub(args: args, tokenEndpoint: tokenEndpoint);
+ var pub = startPub(args: args);
pub.shouldExit(exitCode);
var failures = [];
« no previous file with comments | « no previous file | sdk/lib/_internal/pub_generated/test/test_pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698