We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82b843b commit 95a5a8dCopy full SHA for 95a5a8d
packages/flutter_tools/test/integration.shard/analyze_once_test.dart
@@ -192,10 +192,10 @@ void main() {
192
arguments: <String>['analyze', '--no-pub'],
193
statusTextContains: <String>[
194
'Analyzing',
195
- 'info $analyzerSeparator Avoid empty else statements',
196
- 'info $analyzerSeparator Avoid empty statements',
197
- "info $analyzerSeparator The declaration '_incrementCounter' isn't",
198
- "warning $analyzerSeparator The parameter 'onPressed' is required",
+ 'avoid_empty_else',
+ 'empty_statements',
+ 'unused_element',
+ 'missing_required_param',
199
],
200
exitMessageContains: '4 issues found.',
201
exitCode: 1,
0 commit comments