| Index: pkg/analysis_server/test/channel/test_all.dart
|
| diff --git a/pkg/analysis_server/test/computer/test_all.dart b/pkg/analysis_server/test/channel/test_all.dart
|
| similarity index 61%
|
| copy from pkg/analysis_server/test/computer/test_all.dart
|
| copy to pkg/analysis_server/test/channel/test_all.dart
|
| index 9122f140100d52dee5d6623b8dbdf9aaa6f148e7..a3a0c3ad1b0cd5b60bf883999bca8daf40340f49 100644
|
| --- a/pkg/analysis_server/test/computer/test_all.dart
|
| +++ b/pkg/analysis_server/test/channel/test_all.dart
|
| @@ -2,12 +2,12 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library test.computer.all;
|
| +library test.channel.all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'element_test.dart' as element_test;
|
| -import 'error_test.dart' as error_test;
|
| +import 'byte_stream_channel_test.dart' as byte_stream_channel_test;
|
| +import 'web_socket_channel_test.dart' as web_socket_channel_test;
|
|
|
|
|
| /**
|
| @@ -16,7 +16,7 @@ import 'error_test.dart' as error_test;
|
| main() {
|
| groupSep = ' | ';
|
| group('computer', () {
|
| - element_test.main();
|
| - error_test.main();
|
| + byte_stream_channel_test.main();
|
| + web_socket_channel_test.main();
|
| });
|
| }
|
|
|