Chromium Code Reviews| Index: dart/pkg/unittest/lib/unittest.dart |
| diff --git a/dart/pkg/unittest/lib/unittest.dart b/dart/pkg/unittest/lib/unittest.dart |
| index 41bfc92386678f3f57c41754a520c4bd13150805..5a757c38293d3c2621a9fd40c391219f8fb24a96 100644 |
| --- a/dart/pkg/unittest/lib/unittest.dart |
| +++ b/dart/pkg/unittest/lib/unittest.dart |
| @@ -779,8 +779,7 @@ void _completeTests() { |
| } |
| } |
| _config.onSummary(passed, failed, errors, testCases, _uncaughtErrorMessage); |
| - _config.onDone(passed > 0 && failed == 0 && errors == 0 && |
|
kustermann
2013/11/14 13:43:31
If there are 0 tests to be executed, the result is
|
| - _uncaughtErrorMessage == null); |
| + _config.onDone(failed == 0 && errors == 0 && _uncaughtErrorMessage == null); |
|
ricow1
2013/11/14 14:42:27
I am unsure if we have other assumptions about thi
|
| _initialized = false; |
| } |