| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 4261cec01d9e5265443b9ee30a63592814118ed1..3c454ad2fd87e1e2cac9668532be180c2515ddcc 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -846,7 +846,7 @@ class AnalysisCommandOutputImpl extends CommandOutputImpl {
|
| } else if (fields[ERROR_LEVEL] == 'WARNING') {
|
| // We only care about testing Static type warnings
|
| // ignore all others
|
| - if (fields[ERROR_TYPE] == 'STATIC_TYPE') {
|
| + if (fields[ERROR_TYPE] == 'STATIC_TYPE' || fields[ERROR_TYPE] == 'STATIC_TYPE_WARNING') {
|
| staticWarnings.add(fields[FORMATTED_ERROR]);
|
| }
|
| }
|
|
|