| Index: tests/standalone/test_config.dart
|
| diff --git a/tests/standalone/test_config.dart b/tests/standalone/test_config.dart
|
| index 837285c0c8cec677ef855c39e44133824a8fb3ab..7a8c2806ca0aa5de49f4a2a64f7348d54d883d02 100644
|
| --- a/tests/standalone/test_config.dart
|
| +++ b/tests/standalone/test_config.dart
|
| @@ -34,9 +34,9 @@ class StandaloneTestSuite {
|
| void processDirectory() {
|
| directoryPath = getDirname(directoryPath);
|
| Directory dir = new Directory(directoryPath);
|
| - Expect.isTrue(dir.existsSync(),
|
| - "Cannot find tests/standalone/src or ../tests/standalone/src");
|
| - // TODO(ager): Use dir.errorHandler instead when it is implemented.
|
| + dir.errorHandler = (s) {
|
| + throw s;
|
| + };
|
| dir.fileHandler = processFile;
|
| dir.doneHandler = doDone;
|
| dir.list(false);
|
|
|