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

Unified Diff: services/dart/dart_apptests/lib/src/pingpong_apptests.dart

Issue 1311803002: Dart: Removes dartzip (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Readme fixes Created 5 years, 4 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 | « services/dart/dart_apptests/lib/src/echo_apptests.dart ('k') | services/dart/test/echo/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/dart/dart_apptests/lib/src/pingpong_apptests.dart
diff --git a/services/dart/dart_apptests/lib/src/pingpong_apptests.dart b/services/dart/dart_apptests/lib/src/pingpong_apptests.dart
index e9ed5151718446a4ed66f807a18cef43b0f2d709..83fb0baf6fd3e4fddf6060a3975e281fbef7a508 100644
--- a/services/dart/dart_apptests/lib/src/pingpong_apptests.dart
+++ b/services/dart/dart_apptests/lib/src/pingpong_apptests.dart
@@ -38,7 +38,7 @@ pingpongApptests(Application application, String url) {
test('Ping Service To Pong Client', () async {
var pingPongServiceProxy = new PingPongServiceProxy.unbound();
application.connectToService(
- "mojo:mojo_dart_pingpong_pkg", pingPongServiceProxy);
+ "mojo:dart_pingpong", pingPongServiceProxy);
var pingPongClient = new _TestingPingPongClient.unbound();
pingPongServiceProxy.ptr.setClient(pingPongClient.stub);
@@ -61,10 +61,10 @@ pingpongApptests(Application application, String url) {
test('Ping Target URL', () async {
var pingPongServiceProxy = new PingPongServiceProxy.unbound();
application.connectToService(
- "mojo:mojo_dart_pingpong_pkg", pingPongServiceProxy);
+ "mojo:dart_pingpong", pingPongServiceProxy);
var r = await pingPongServiceProxy.ptr.pingTargetUrl(
- "mojo:mojo_dart_pingpong_target_pkg", 9);
+ "mojo:dart_pingpong_target", 9);
expect(r.ok, equals(true));
await pingPongServiceProxy.close();
@@ -75,11 +75,11 @@ pingpongApptests(Application application, String url) {
test('Ping Target Service', () async {
var pingPongServiceProxy = new PingPongServiceProxy.unbound();
application.connectToService(
- "mojo:mojo_dart_pingpong_pkg", pingPongServiceProxy);
+ "mojo:dart_pingpong", pingPongServiceProxy);
var targetServiceProxy = new PingPongServiceProxy.unbound();
application.connectToService(
- "mojo:mojo_dart_pingpong_target_pkg", targetServiceProxy);
+ "mojo:dart_pingpong_target", targetServiceProxy);
var r = await pingPongServiceProxy.ptr.pingTargetService(
targetServiceProxy.impl, 9);
@@ -95,7 +95,7 @@ pingpongApptests(Application application, String url) {
test('Get Target Service', () async {
var pingPongServiceProxy = new PingPongServiceProxy.unbound();
application.connectToService(
- "mojo:mojo_dart_pingpong_pkg", pingPongServiceProxy);
+ "mojo:dart_pingpong", pingPongServiceProxy);
var targetServiceProxy = new PingPongServiceProxy.unbound();
pingPongServiceProxy.ptr.getPingPongService(targetServiceProxy);
« no previous file with comments | « services/dart/dart_apptests/lib/src/echo_apptests.dart ('k') | services/dart/test/echo/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698