| Index: pkg/analysis_server/test/integration/server_domain_inttest.dart
|
| diff --git a/pkg/analysis_server/test/integration/server_domain_inttest.dart b/pkg/analysis_server/test/integration/server_domain_inttest.dart
|
| index d86db0679e36201001df69f79ca9f5c5923b96d0..0544b95f3e04da141149e5965d6e89c15972d4da 100644
|
| --- a/pkg/analysis_server/test/integration/server_domain_inttest.dart
|
| +++ b/pkg/analysis_server/test/integration/server_domain_inttest.dart
|
| @@ -71,6 +71,16 @@ main() {
|
| });
|
| }
|
|
|
| + test_setSubscriptions_invalidService() {
|
| + // TODO(paulberry): verify that if an invalid service is specified, the
|
| + // current subscriptions are unchanged.
|
| + return server_setSubscriptions(['bogus']).then((_) {
|
| + fail('setSubscriptions should have produced an error');
|
| + }, onError: (error) {
|
| + // The expected error occurred.
|
| + });
|
| + }
|
| +
|
| test_connected() {
|
| Completer receivedConnected = new Completer();
|
| server.onNotification('server.connected').listen((params) {
|
|
|