| Index: pkg/analysis_server/test/integration/analysis/error_test.dart
|
| diff --git a/pkg/analysis_server/test/integration/analysis/error_test.dart b/pkg/analysis_server/test/integration/analysis/error_test.dart
|
| index 5c4bea4be28d41d396134fcfc0e02cadec086c1a..edcbcdf786dc250bb4c7570a2144291d0293949a 100644
|
| --- a/pkg/analysis_server/test/integration/analysis/error_test.dart
|
| +++ b/pkg/analysis_server/test/integration/analysis/error_test.dart
|
| @@ -14,7 +14,8 @@ main() {
|
| });
|
| }
|
|
|
| -class AbstractAnalysisErrorIntegrationTest
|
| +@reflectiveTest
|
| +class AnalysisErrorIntegrationTest
|
| extends AbstractAnalysisServerIntegrationTest {
|
| test_detect_simple_error() {
|
| String pathname = sourcePath('test.dart');
|
| @@ -67,7 +68,15 @@ abstract class C extends B {
|
| "The class 'C' can't be used as a mixin because it references 'super'."));
|
| }
|
|
|
| + @failingTest
|
| test_super_mixins_enabled() async {
|
| + // We see errors here with the new driver (#28870).
|
| + // Expected: empty
|
| + // Actual: [
|
| + // AnalysisError:{"severity":"ERROR","type":"COMPILE_TIME_ERROR","location":{"file":"/var/folders/00/0w95r000h01000cxqpysvccm003j4q/T/analysisServerfbuOQb/test.dart","offset":31,"length":1,"startLine":1,"startColumn":32},"message":"The class 'C' can't be used as a mixin because it extends a class other than Object.","correction":"","code":"mixin_inherits_from_not_object","hasFix":false},
|
| + // AnalysisError:{"severity":"ERROR","type":"COMPILE_TIME_ERROR","location":{"file":"/var/folders/00/0w95r000h01000cxqpysvccm003j4q/T/analysisServerfbuOQb/test.dart","offset":31,"length":1,"startLine":1,"startColumn":32},"message":"The class 'C' can't be used as a mixin because it references 'super'.","correction":"","code":"mixin_references_super","hasFix":false}
|
| + // ]
|
| +
|
| String pathname = sourcePath('test.dart');
|
| writeFile(
|
| pathname,
|
| @@ -93,7 +102,3 @@ abstract class C extends B {
|
| expect(errors, isEmpty);
|
| }
|
| }
|
| -
|
| -@reflectiveTest
|
| -class AnalysisErrorIntegrationTest
|
| - extends AbstractAnalysisErrorIntegrationTest {}
|
|
|