| Index: pkg/analysis_server/test/integration/server/set_subscriptions_test.dart
|
| diff --git a/pkg/analysis_server/test/integration/server/set_subscriptions_test.dart b/pkg/analysis_server/test/integration/server/set_subscriptions_test.dart
|
| index 51f974a44120dd5fc51ea3149f3d05c8b23ed10d..990be25a13b6d00fab43a8d5510e137008f7a363 100644
|
| --- a/pkg/analysis_server/test/integration/server/set_subscriptions_test.dart
|
| +++ b/pkg/analysis_server/test/integration/server/set_subscriptions_test.dart
|
| @@ -24,7 +24,7 @@ class Test extends AbstractAnalysisServerIntegrationTest {
|
| analysisBegun.complete();
|
| }
|
| });
|
| - return sendServerSetSubscriptions([]).then((_) {
|
| + return sendServerSetSubscriptions().then((_) {
|
| String pathname = sourcePath('test.dart');
|
| writeFile(pathname, '''
|
| main() {
|
| @@ -35,7 +35,7 @@ main() {
|
| // received.
|
| return analysisBegun.future.then((_) {
|
| expect(statusReceived, isFalse);
|
| - return sendServerSetSubscriptions(['STATUS']).then((_) {
|
| + return sendServerSetSubscriptions(subscriptions: ['STATUS']).then((_) {
|
| // Tickle test.dart just in case analysis has already completed.
|
| writeFile(pathname, '''
|
| main() {
|
|
|