| Index: pkg/analyzer/test/src/dart/constant/evaluation_test.dart
|
| diff --git a/pkg/analyzer/test/src/dart/constant/evaluation_test.dart b/pkg/analyzer/test/src/dart/constant/evaluation_test.dart
|
| index dd3c4f388f0999edcb27bb26c04e248fc138bd00..cf6d9cd103fbad991e4f4fdba77b488156152ec8 100644
|
| --- a/pkg/analyzer/test/src/dart/constant/evaluation_test.dart
|
| +++ b/pkg/analyzer/test/src/dart/constant/evaluation_test.dart
|
| @@ -30,7 +30,6 @@ main() {
|
| initializeTestEnvironment();
|
| runReflectiveTests(ConstantValueComputerTest);
|
| runReflectiveTests(ConstantVisitorTest);
|
| - runReflectiveTests(StrongConstantValueComputerTest);
|
| }
|
|
|
| /**
|
| @@ -1601,11 +1600,3 @@ const b = 3;''');
|
| return result;
|
| }
|
| }
|
| -
|
| -@reflectiveTest
|
| -class StrongConstantValueComputerTest extends ConstantValueComputerTest {
|
| - void setUp() {
|
| - super.setUp();
|
| - resetWithOptions(new AnalysisOptionsImpl()..strongMode = true);
|
| - }
|
| -}
|
|
|