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

Unified Diff: test/isolate_test.dart

Issue 1863233002: Fix some broken tests. (Closed) Base URL: git@github.com:dart-lang/vm_service_client.git@master
Patch Set: Code review changes 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
« no previous file with comments | « test/instance_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/isolate_test.dart
diff --git a/test/isolate_test.dart b/test/isolate_test.dart
index dbd0bc0f5c5d4dda2d3c797921945ac606831266..8c354bb4bebf5c0932cd97ff7527bea3db9a9ed5 100644
--- a/test/isolate_test.dart
+++ b/test/isolate_test.dart
@@ -167,7 +167,7 @@ void main() {
});
});
- test("onServiceExtensionAdded fires when an extension is added", () async {
+ test("onExtensionAdded fires when an extension is added", () async {
client = await runAndConnect(main: """
registerExtension('ext.test', (_, __) {});
""", flags: ["--pause-isolates-on-start"]);
@@ -176,7 +176,7 @@ void main() {
await isolate.waitUntilPaused();
await isolate.resume();
- expect(await isolate.onServiceExtensionAdded.first, equals('ext.test'));
+ expect(await isolate.onExtensionAdded.first, equals('ext.test'));
});
group("onExtensionEvent", () {
« no previous file with comments | « test/instance_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698