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

Unified Diff: services/dart/dart_apptests/main.dart

Issue 996923003: Dart: Better handle leak checks. close() is async. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Merge Created 5 years, 9 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: services/dart/dart_apptests/main.dart
diff --git a/services/dart/dart_apptests/main.dart b/services/dart/dart_apptests/main.dart
index c193530499aaa1191d82f2541cdbd053ab04ab94..54e1cc9228dddebbcf1236d6dd19c697e4ece3a5 100644
--- a/services/dart/dart_apptests/main.dart
+++ b/services/dart/dart_apptests/main.dart
@@ -5,9 +5,9 @@
import 'package:apptest/apptest.dart';
import 'package:services/dart/test/echo_service.mojom.dart';
-import 'echo_apptests.dart';
-import 'pingpong_apptests.dart';
+import 'echo_apptests.dart' as echo;
+import 'pingpong_apptests.dart' as pingpong;
main(List args) {
- runAppTests(args[0], [echoApptests, pingpongApptests]);
+ runAppTests(args[0], [echo.echoApptests, pingpong.pingpongApptests]);
}
« no previous file with comments | « mojo/public/tools/bindings/generators/dart_templates/interface_definition.tmpl ('k') | services/dart/test/echo/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698