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

Unified Diff: tests/isolate/src/MintMakerPromiseTest.dart

Issue 8286021: Remove prints. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 2 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 | tests/isolate/src/PromiseBasedTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/src/MintMakerPromiseTest.dart
===================================================================
--- tests/isolate/src/MintMakerPromiseTest.dart (revision 427)
+++ tests/isolate/src/MintMakerPromiseTest.dart (working copy)
@@ -49,7 +49,7 @@
if (source._balance < amount) throw "Not enough dough.";
_balance += amount;
source._balance -= amount;
- print("Moved $amount, leaving ${source._balance}");
+ //print("Moved $amount, leaving ${source._balance}");
return _balance;
}
@@ -103,7 +103,7 @@
results = new List<Promise>();
}
results.add(promise.then((int actual) {
- print("done $expected/$actual");
+ //print("done $expected/$actual");
Expect.equals(expected, actual);
}));
}
@@ -115,7 +115,7 @@
Promise done = new Promise();
done.waitFor(results, results.length);
done.then((ignored) {
- print("expectDone $n/${results.length}");
+ //print("expectDone $n/${results.length}");
Expect.equals(n, results.length);
});
}
@@ -210,7 +210,7 @@
void process(var message, void reply(var response)) {
String command = message[0];
- print("command $command");
+ //print("command $command");
if (command == "balance") {
int balance = target.queryBalance();
reply(balance);
@@ -231,7 +231,7 @@
// TODO: Send an exception back.
reply("Exception: Command not understood");
}
- print("command $command done");
+ //print("command $command done");
}
}
« no previous file with comments | « no previous file | tests/isolate/src/PromiseBasedTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698