[Linux] Update doctor wording for Linux (#99700)

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

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

View File

@ -108,7 +108,7 @@ const Feature flutterMacOSDesktopFeature = Feature(
/// The [Feature] for Linux desktop.
const Feature flutterLinuxDesktopFeature = Feature(
name: 'beta-quality support for desktop on Linux',
name: 'support for desktop on Linux',
configSetting: 'enable-linux-desktop',
environmentOverride: 'FLUTTER_LINUX',
extraHelpText: 'Newer beta versions are available on the beta channel.',

View File

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