| Index: pkg/analysis_server/test/server_options_test.dart
|
| diff --git a/pkg/analysis_server/test/server_options_test.dart b/pkg/analysis_server/test/server_options_test.dart
|
| index 89d1e9d22376c1b8431fb06decd91466ae39ac02..f3a3790db53ecdea4a9f8f8b77bcc1a393b23179 100644
|
| --- a/pkg/analysis_server/test/server_options_test.dart
|
| +++ b/pkg/analysis_server/test/server_options_test.dart
|
| @@ -33,6 +33,7 @@ foobar: off
|
| expect(options.isSet('baz'), isFalse);
|
| expect(options.isSet('foobar'), isFalse);
|
| expect(options.isSet('does_not_exist'), isFalse);
|
| + expect(options.isSet('does_not_exist', defaultValue: true), isTrue);
|
| });
|
|
|
| test('basic - getStringValue', () {
|
|
|