| Index: pkg/testing/lib/src/test_description.dart
|
| diff --git a/pkg/testing/lib/src/test_description.dart b/pkg/testing/lib/src/test_description.dart
|
| index 9b1c5b3169b4069342326d761f2b947951e2567b..12e0b03394b0fe16e2325f41ac502570adb406ad 100644
|
| --- a/pkg/testing/lib/src/test_description.dart
|
| +++ b/pkg/testing/lib/src/test_description.dart
|
| @@ -4,9 +4,7 @@
|
|
|
| library testing.test_description;
|
|
|
| -import 'dart:io' show
|
| - File,
|
| - FileSystemEntity;
|
| +import 'dart:io' show File, FileSystemEntity;
|
|
|
| class TestDescription implements Comparable<TestDescription> {
|
| final Uri root;
|
| @@ -44,8 +42,8 @@ class TestDescription implements Comparable<TestDescription> {
|
| sink.writeln('.main,');
|
| }
|
|
|
| - static TestDescription from(
|
| - Uri root, FileSystemEntity entity, {Pattern pattern}) {
|
| + static TestDescription from(Uri root, FileSystemEntity entity,
|
| + {Pattern pattern}) {
|
| if (entity is! File) return null;
|
| pattern ??= "_test.dart";
|
| String path = entity.uri.path;
|
|
|