Index: tools/testing/dart/test_suite.dart |
=================================================================== |
--- tools/testing/dart/test_suite.dart (revision 13588) |
+++ tools/testing/dart/test_suite.dart (working copy) |
@@ -224,8 +224,8 @@ |
this.suiteName, |
Path suiteDirectory, |
this.statusFilePaths, |
- [this.isTestFilePredicate, |
- bool recursive = false]) |
+ {this.isTestFilePredicate, |
+ bool recursive: false}) |
Lasse Reichstein Nielsen
2012/10/12 07:52:19
Do we have a rule for indentation in cases like th
regis
2012/10/12 17:51:51
I am not aware of a rule. I have seen different st
|
: dartDir = TestUtils.dartDir(), _listRecursive = recursive, |
suiteDir = TestUtils.dartDir().join(suiteDirectory); |
@@ -263,7 +263,7 @@ |
return new StandardTestSuite(configuration, |
name, directory, |
['$directory/$name.status', '$directory/${name}_dart2js.status'], |
- (filename) => filename.endsWith('_test.dart'), |
+ isTestFilePredicate: (filename) => filename.endsWith('_test.dart'), |
recursive: true); |
} |