| Index: tools/testing/dart/multitest.dart
|
| diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart
|
| index ab4452137b523d86db5608a39861059c1cf7de63..5dae9c58fae755e008bb02379d1bc120a05d499e 100644
|
| --- a/tools/testing/dart/multitest.dart
|
| +++ b/tools/testing/dart/multitest.dart
|
| @@ -130,7 +130,7 @@ Set<String> _findAllRelativeImports(String topLibrary) {
|
| for (String filename in thisPass) {
|
| File f = new File(filename);
|
| for (String line in f.readAsLinesSync()) {
|
| - Match match = relativeImportRegExp.firstMatch(line);
|
| + Match match = relativeImportRegExp.firstMatch(line);
|
| if (match != null) {
|
| String relativePath = match.group(3);
|
| if (foundImports.contains(relativePath)) {
|
| @@ -154,7 +154,7 @@ Set<String> _findAllRelativeImports(String topLibrary) {
|
| void DoMultitest(String filename,
|
| String outputDir,
|
| String testDir,
|
| - // TODO(zundel): Are the boolean flags now redundant
|
| + // TODO(zundel): Are the boolean flags now redundant
|
| // with the 'multitestOutcome' field?
|
| Function doTest(String filename,
|
| bool isNegative,
|
|
|