| Index: pkg/scheduled_test/lib/src/descriptor/utils.dart
|
| diff --git a/pkg/scheduled_test/lib/src/descriptor/utils.dart b/pkg/scheduled_test/lib/src/descriptor/utils.dart
|
| index 5f0280629858c4bdace0b7c19966e73bf0d06649..c6490195c91011d3f7a75fec0c0bb953ebb24498 100644
|
| --- a/pkg/scheduled_test/lib/src/descriptor/utils.dart
|
| +++ b/pkg/scheduled_test/lib/src/descriptor/utils.dart
|
| @@ -27,7 +27,7 @@ String entryMatchingPattern(String type, String parent, Pattern pattern) {
|
|
|
| var matchingEntries = new Directory(parent).listSync()
|
| .map((entry) => entry is File ? entry.fullPathSync() : entry.path)
|
| - .where((entry) => entry.contains(pattern))
|
| + .where((entry) => path.basename(entry).contains(pattern))
|
| .toList();
|
| matchingEntries.sort();
|
|
|
|
|