| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| index 906009216921234b201ad1c3649c5f72af9b3c42..18d9fdb22ea817ab29e23b7f1163f759b2448819 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| @@ -1326,19 +1326,6 @@ public class NonErrorResolverTest extends ResolverTestCase {
|
| verify(source);
|
| }
|
|
|
| - public void test_importDeferredLibraryWithLoadFunction() throws Exception {
|
| - addNamedSource("/lib1.dart", createSource(//
|
| - "library lib1;",
|
| - "f() {}"));
|
| - Source source = addSource(createSource(//
|
| - "library root;",
|
| - "import 'lib1.dart' deferred as lib1;",
|
| - "main() { lib1.f(); }"));
|
| - resolve(source);
|
| - assertNoErrors(source);
|
| - verify(source);
|
| - }
|
| -
|
| public void test_importDuplicatedLibraryName() throws Exception {
|
| Source source = addSource(createSource(//
|
| "library test;",
|
|
|