| Index: pkg/async_helper/lib/async_helper.dart
|
| diff --git a/pkg/async_helper/lib/async_helper.dart b/pkg/async_helper/lib/async_helper.dart
|
| index 37496bcb76bda9156c55f57b6accd2ec6b35895f..965385e4a3a1202dda6917ca9a1ae4447e74efda 100644
|
| --- a/pkg/async_helper/lib/async_helper.dart
|
| +++ b/pkg/async_helper/lib/async_helper.dart
|
| @@ -41,7 +41,7 @@ Exception _buildException(String msg) {
|
| void asyncStart() {
|
| if (_initialized && _asyncLevel == 0) {
|
| throw _buildException('asyncStart() was called even though we are done '
|
| - 'with testing.');
|
| + 'with testing.');
|
| }
|
| if (!_initialized) {
|
| print('unittest-suite-wait-for-done');
|
| @@ -58,7 +58,7 @@ void asyncEnd() {
|
| throw _buildException('asyncEnd() was called before asyncStart().');
|
| } else {
|
| throw _buildException('asyncEnd() was called more often than '
|
| - 'asyncStart().');
|
| + 'asyncStart().');
|
| }
|
| }
|
| _asyncLevel--;
|
|
|