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

Unified Diff: services/dart/dart_apptests/lib/src/echo_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/BUILD.gn ('k') | services/dart/dart_apptests/lib/src/pingpong_apptests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/dart/dart_apptests/lib/src/echo_apptests.dart
diff --git a/services/dart/dart_apptests/lib/src/echo_apptests.dart b/services/dart/dart_apptests/lib/src/echo_apptests.dart
index 230486d8d06b89b10b0039bf1aba6f664dcb9248..d5a817c2caa244026beb7992332e57a4e85e8e41 100644
--- a/services/dart/dart_apptests/lib/src/echo_apptests.dart
+++ b/services/dart/dart_apptests/lib/src/echo_apptests.dart
@@ -16,7 +16,7 @@ echoApptests(Application application, String url) {
group('Echo Service Apptests', () {
test('String', () async {
var echoProxy = new EchoServiceProxy.unbound();
- application.connectToService("mojo:mojo_dart_echo_pkg", echoProxy);
+ application.connectToService("mojo:dart_echo", echoProxy);
var v = await echoProxy.ptr.echoString("foo");
expect(v.value, equals("foo"));
@@ -29,7 +29,7 @@ echoApptests(Application application, String url) {
test('Empty String', () async {
var echoProxy = new EchoServiceProxy.unbound();
- application.connectToService("mojo:mojo_dart_echo_pkg", echoProxy);
+ application.connectToService("mojo:dart_echo", echoProxy);
var v = await echoProxy.ptr.echoString("");
expect(v.value, equals(""));
@@ -42,7 +42,7 @@ echoApptests(Application application, String url) {
test('Null String', () async {
var echoProxy = new EchoServiceProxy.unbound();
- application.connectToService("mojo:mojo_dart_echo_pkg", echoProxy);
+ application.connectToService("mojo:dart_echo", echoProxy);
var v = await echoProxy.ptr.echoString(null);
expect(v.value, equals(null));
@@ -55,7 +55,7 @@ echoApptests(Application application, String url) {
test('Delayed Success', () async {
var echoProxy = new EchoServiceProxy.unbound();
- application.connectToService("mojo:mojo_dart_echo_pkg", echoProxy);
+ application.connectToService("mojo:dart_echo", echoProxy);
var milliseconds = 100;
var watch = new Stopwatch()..start();
@@ -72,7 +72,7 @@ echoApptests(Application application, String url) {
test('Delayed Close', () {
var echoProxy = new EchoServiceProxy.unbound();
- application.connectToService("mojo:mojo_dart_echo_pkg", echoProxy);
+ application.connectToService("mojo:dart_echo", echoProxy);
var milliseconds = 100;
echoProxy.ptr.delayedEchoString("quit", milliseconds).then((_) {
« no previous file with comments | « services/dart/dart_apptests/BUILD.gn ('k') | services/dart/dart_apptests/lib/src/pingpong_apptests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698