| Index: pkg/analysis_server/test/domain_execution_test.dart
|
| diff --git a/pkg/analysis_server/test/domain_execution_test.dart b/pkg/analysis_server/test/domain_execution_test.dart
|
| index 24aea8d6a8cad0953c18738d2924b40f24ef02ef..447a736ba9fceae1e2e363517b38eb471ad4a4bc 100644
|
| --- a/pkg/analysis_server/test/domain_execution_test.dart
|
| +++ b/pkg/analysis_server/test/domain_execution_test.dart
|
| @@ -219,7 +219,7 @@ main() {
|
| ExecutionDomainHandler handler = new ExecutionDomainHandler(server);
|
| Request request = new ExecutionSetSubscriptionsParams(
|
| [ExecutionService.LAUNCH_DATA]).toRequest('0');
|
| - Response response = handler.handleRequest(request);
|
| + handler.handleRequest(request);
|
|
|
| // controller.add(null);
|
| expect(unsentNotifications, isEmpty);
|
| @@ -267,7 +267,6 @@ class IsExecutableFile extends Matcher {
|
| if (item is! ExecutableFile) {
|
| return false;
|
| }
|
| - ExecutableFile file = item;
|
| return item.file == expectedFile && item.kind == expectedKind;
|
| }
|
| }
|
|
|