| Index: pkg/analysis_server/test/integration/execution/map_uri_test.dart
|
| diff --git a/pkg/analysis_server/test/integration/execution/map_uri_test.dart b/pkg/analysis_server/test/integration/execution/map_uri_test.dart
|
| index dcece47318af6d98cc5d03ef384410a3ab74ec14..8d6215a8e020d6e21f5360eb4f0957b89395437d 100644
|
| --- a/pkg/analysis_server/test/integration/execution/map_uri_test.dart
|
| +++ b/pkg/analysis_server/test/integration/execution/map_uri_test.dart
|
| @@ -11,11 +11,11 @@ import '../integration_tests.dart';
|
| main() {
|
| defineReflectiveSuite(() {
|
| defineReflectiveTests(MapUriTest);
|
| - defineReflectiveTests(MapUriTest_Driver);
|
| });
|
| }
|
|
|
| -abstract class AbstractMapUriTest extends AbstractAnalysisServerIntegrationTest {
|
| +@reflectiveTest
|
| +class MapUriTest extends AbstractAnalysisServerIntegrationTest {
|
| test_mapUri() async {
|
| String pathname = sourcePath('lib/main.dart');
|
| writeFile(pathname, '// dummy');
|
| @@ -38,12 +38,3 @@ abstract class AbstractMapUriTest extends AbstractAnalysisServerIntegrationTest
|
| }
|
| }
|
| }
|
| -
|
| -@reflectiveTest
|
| -class MapUriTest extends AbstractMapUriTest {}
|
| -
|
| -@reflectiveTest
|
| -class MapUriTest_Driver extends AbstractMapUriTest {
|
| - @override
|
| - bool get enableNewAnalysisDriver => true;
|
| -}
|
|
|