Chromium Code Reviews| Index: pkg/scheduled_test/lib/descriptor.dart |
| diff --git a/pkg/scheduled_test/lib/descriptor.dart b/pkg/scheduled_test/lib/descriptor.dart |
| index 0004236695c080ee7b4d6650ff8678168ea3e03c..bdb846a58eca587f86d312bcf6446189e89f8eeb 100644 |
| --- a/pkg/scheduled_test/lib/descriptor.dart |
| +++ b/pkg/scheduled_test/lib/descriptor.dart |
| @@ -10,6 +10,7 @@ |
| /// on the physical filesystem, or [Descriptor.validate] to schedule an |
| /// assertion that that structure exists. For example: |
| /// |
| +/// import 'dart:io'; |
|
Bob Nystrom
2014/02/19 18:17:28
Nit, but can you add a blank line after this impor
kevmoo
2014/02/19 21:53:12
Done.
|
| /// import 'package:scheduled_test/descriptor.dart' as d; |
| /// import 'package:scheduled_test/scheduled_test.dart'; |
| /// |
| @@ -31,7 +32,7 @@ |
| /// d.file('child', 'child-contents') |
| /// ]) |
| /// ]).validate(); |
| -/// }) |
| +/// }); |
| /// } |
| /// |
| /// Usually you don't want your tests cluttering up your working directory with |