| Index: pkg/analyzer/test/src/context/context_test.dart
|
| diff --git a/pkg/analyzer/test/src/context/context_test.dart b/pkg/analyzer/test/src/context/context_test.dart
|
| index 2395f81215dc7eed814b1738bdbeb2ecbd8e1e53..f726b3e7d4b8c5e8a471d17027a16e0d837a47cb 100644
|
| --- a/pkg/analyzer/test/src/context/context_test.dart
|
| +++ b/pkg/analyzer/test/src/context/context_test.dart
|
| @@ -1023,21 +1023,6 @@ part 'part.dart';''');
|
| (obj) => obj is ClassElement, ClassElement, namespace.get("A"));
|
| }
|
|
|
| - void fail_getRefactoringUnsafeSources() {
|
| - // not sources initially
|
| - List<Source> sources = _context.refactoringUnsafeSources;
|
| - expect(sources, hasLength(0));
|
| - // add new source, unresolved
|
| - Source source = _addSource("/test.dart", "library lib;");
|
| - sources = _context.refactoringUnsafeSources;
|
| - expect(sources, hasLength(1));
|
| - expect(sources[0], source);
|
| - // resolve source
|
| - _context.computeLibraryElement(source);
|
| - sources = _context.refactoringUnsafeSources;
|
| - expect(sources, hasLength(0));
|
| - }
|
| -
|
| void fail_getResolvedCompilationUnit_library() {
|
| _context = contextWithCore();
|
| _sourceFactory = _context.sourceFactory;
|
|
|