| Index: pkg/dev_compiler/test/not_yet_strong_tests.dart
|
| diff --git a/pkg/dev_compiler/test/not_yet_strong_tests.dart b/pkg/dev_compiler/test/not_yet_strong_tests.dart
|
| index d5c5092a83d8922021d01b0f9a43482af0ac3ad0..7f851b37e978c3b27684d8df9df2853c48955e02 100644
|
| --- a/pkg/dev_compiler/test/not_yet_strong_tests.dart
|
| +++ b/pkg/dev_compiler/test/not_yet_strong_tests.dart
|
| @@ -1,4 +1,5 @@
|
| import 'dart:collection';
|
| +import 'package:path/path.dart' as path;
|
|
|
| /// The set of tests that are not yet strong mode safe.
|
| final notYetStrongTests = new HashSet<String>.from([
|
| @@ -2437,4 +2438,4 @@ final notYetStrongTests = new HashSet<String>.from([
|
| // TODO(jmesserly): these are both under "dart:html" as well.
|
| 'js_test',
|
| 'js_util_test'
|
| -]);
|
| +].map((p) => p.replaceAll('/', path.separator)));
|
|
|