[macOS] Update doctor wording for macOS (#99699)

Removes the beta-quality wording for macOS from messages in the tool.

Issue: https://github.com/flutter/flutter/issues/98680
This commit is contained in:
Chris Bracken 2022-03-28 15:44:28 -07:00 committed by GitHub
parent 9c138f9c76
commit b6bf325d0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ const Feature flutterWebFeature = Feature(
/// The [Feature] for macOS desktop.
const Feature flutterMacOSDesktopFeature = Feature(
name: 'beta-quality support for desktop on macOS',
name: 'support for desktop on macOS',
configSetting: 'enable-macos-desktop',
environmentOverride: 'FLUTTER_MACOS',
extraHelpText: 'Newer beta versions are available on the beta channel.',

View File

@ -89,7 +89,7 @@ void main() {
testWithoutContext('Flutter macOS desktop help string', () {
expect(flutterMacOSDesktopFeature.generateHelpMessage(),
'Enable or disable beta-quality support for desktop on macOS. '
'Enable or disable support for desktop on macOS. '
'This setting will take effect on the master, beta, and stable channels. '
'Newer beta versions are available on the beta channel.');
});