Index: dart/tools/testing/dart/multitest.dart |
diff --git a/dart/tools/testing/dart/multitest.dart b/dart/tools/testing/dart/multitest.dart |
index b9424375e39685f30273db3e30a6b6e63c9dd5ea..197e850f5bca934edc90b1aa650807c42a4cdeef 100644 |
--- a/dart/tools/testing/dart/multitest.dart |
+++ b/dart/tools/testing/dart/multitest.dart |
@@ -229,7 +229,7 @@ Future doMultitest(Path filePath, String outputDir, Path suiteDir, |
openedFile.writeStringSync(tests[key]); |
openedFile.closeSync(); |
Set<String> outcome = outcomes[key]; |
- bool enableFatalTypeErrors = outcome.contains('static type warning'); |
+ bool hasStaticWarning = outcome.contains('static type warning'); |
bool hasRuntimeErrors = outcome.contains('runtime error'); |
bool hasCompileError = outcome.contains('compile-time error'); |
bool isNegativeIfChecked = outcome.contains('dynamic type error'); |
@@ -237,7 +237,7 @@ Future doMultitest(Path filePath, String outputDir, Path suiteDir, |
hasCompileError, |
hasRuntimeErrors, |
isNegativeIfChecked: isNegativeIfChecked, |
- hasFatalTypeErrors: enableFatalTypeErrors, |
+ hasStaticWarning: hasStaticWarning, |
multitestOutcome: outcome, |
multitestKey: key, |
originTestPath: filePath); |