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

Unified Diff: test/isolate_test.dart

Issue 1929063002: pkg/vm_service_client: add getSourceReport to VMServiceReference (Closed) Base URL: https://github.com/dart-lang/vm_service_client.git@master
Patch Set: changelog oops Created 4 years, 8 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: test/isolate_test.dart
diff --git a/test/isolate_test.dart b/test/isolate_test.dart
index 8c354bb4bebf5c0932cd97ff7527bea3db9a9ed5..a62c2c913ec00c953c3dcc538e5dde0d7d06ad0e 100644
--- a/test/isolate_test.dart
+++ b/test/isolate_test.dart
@@ -376,7 +376,7 @@ void main() {
isolate = (await client.getVM()).isolates.first;
await isolate.waitUntilPaused();
- stdout = new StreamQueue(lines.bind(isolate.stdout));
+ stdout = new StreamQueue(isolate.stdout.transform(lines));
});
test("resumes normal execution by default", () async {

Powered by Google App Engine
This is Rietveld 408576698