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

Unified Diff: test/runner/engine_test.dart

Issue 1578173003: Remove some debugging prints. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/runner/engine_test.dart
diff --git a/test/runner/engine_test.dart b/test/runner/engine_test.dart
index 37a8120effd55bfc74aad5a8082aa4ffabb7ca0c..2fd80548cc2a4a7f3a11536f7d5153a8ecffc11a 100644
--- a/test/runner/engine_test.dart
+++ b/test/runner/engine_test.dart
@@ -121,7 +121,6 @@ void main() {
var secondTestStarted = false;
var firstTestFinished = false;
var tearDownBody = expectAsync(() {
- print("running teardown");
expect(secondTestStarted, isFalse);
expect(firstTestFinished, isFalse);
});
@@ -135,14 +134,12 @@ void main() {
tearDown(tearDownBody);
test("first test", () async {
- print("running first test");
await firstTestCompleter.future;
firstTestFinished = true;
}, timeout: new Timeout(Duration.ZERO));
});
test("second test", () {
- print("running second test");
secondTestStarted = true;
firstTestCompleter.complete();
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698