| Index: pkg/analyzer/test/src/task/options_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/options_test.dart b/pkg/analyzer/test/src/task/options_test.dart
|
| index ce4bf2e89595fc9b355c5b43c24bbae08ddedf2c..b8d0a5a00dff5c5f2906435a9711ee7b6c868505 100644
|
| --- a/pkg/analyzer/test/src/task/options_test.dart
|
| +++ b/pkg/analyzer/test/src/task/options_test.dart
|
| @@ -54,14 +54,14 @@ analyzer:
|
| expect(analysisOptions.strongMode, false);
|
| }
|
|
|
| - test_configure_enableGenericMethods() {
|
| - expect(analysisOptions.enableGenericMethods, false);
|
| + test_configure_enableLazyAssignmentOperators() {
|
| + expect(analysisOptions.enableStrictCallChecks, false);
|
| configureContext('''
|
| analyzer:
|
| language:
|
| - enableGenericMethods: true
|
| + enableStrictCallChecks: true
|
| ''');
|
| - expect(analysisOptions.enableGenericMethods, true);
|
| + expect(analysisOptions.enableStrictCallChecks, true);
|
| }
|
|
|
| test_configure_enableStrictCallChecks() {
|
|
|