| Index: tests/standalone/src/StatusFileParserTest.dart
|
| diff --git a/tests/standalone/src/StatusFileParserTest.dart b/tests/standalone/src/StatusFileParserTest.dart
|
| index a3bbc7e15453f745a24f3e03127181d986761afa..e2cee07cf283026a5516f216bf49368dbdf9bd5d 100644
|
| --- a/tests/standalone/src/StatusFileParserTest.dart
|
| +++ b/tests/standalone/src/StatusFileParserTest.dart
|
| @@ -28,7 +28,8 @@ void TestReadStatusFile(String filePath) {
|
| File file = new File(getFilename(filePath));
|
| if (file.existsSync()) {
|
| List<Section> sections = new List<Section>();
|
| - ReadConfigurationInto(filePath, sections);
|
| - Expect.isTrue(sections.length > 0);
|
| + ReadConfigurationInto(filePath, sections, () {
|
| + Expect.isTrue(sections.length > 0);
|
| + });
|
| }
|
| }
|
|
|