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

Unified Diff: tests/isolate/spawn_uri_nested_vm_test.dart

Issue 218273002: Upgrading tests with unittest deprecations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: tests/isolate/spawn_uri_nested_vm_test.dart
diff --git a/tests/isolate/spawn_uri_nested_vm_test.dart b/tests/isolate/spawn_uri_nested_vm_test.dart
index 07deb9af997da5fd049fe18591f23c9b7175a86f..c1b084df5564f3c0e45d3075ac192f37ec06281f 100644
--- a/tests/isolate/spawn_uri_nested_vm_test.dart
+++ b/tests/isolate/spawn_uri_nested_vm_test.dart
@@ -15,6 +15,6 @@ main() {
ReceivePort port = new ReceivePort();
Isolate.spawnUri(Uri.parse('spawn_uri_nested_child1_vm_isolate.dart'),
[], [[1, 2], port.sendPort]);
- port.first.then(expectAsync1((result) => print(result)));
+ port.first.then(expectAsync((result) => print(result)));
});
}

Powered by Google App Engine
This is Rietveld 408576698