| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryImportScopeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryImportScopeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryImportScopeTest.java
|
| index b9aa8ed46b3076137bd9d4f42e58ad3f6f670dcf..73bc57500f20fad69867831168614960e2cf212e 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryImportScopeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryImportScopeTest.java
|
| @@ -20,7 +20,6 @@ import com.google.dart.engine.element.Element;
|
| import com.google.dart.engine.element.ImportElement;
|
| import com.google.dart.engine.element.LibraryElement;
|
| import com.google.dart.engine.element.MultiplyDefinedElement;
|
| -import com.google.dart.engine.error.CompileTimeErrorCode;
|
| import com.google.dart.engine.error.GatheringErrorListener;
|
| import com.google.dart.engine.error.StaticWarningCode;
|
| import com.google.dart.engine.internal.context.AnalysisContextImpl;
|
| @@ -71,7 +70,7 @@ public class LibraryImportScopeTest extends ResolverTestCase {
|
| errorListener.assertNoErrors();
|
|
|
| Element element = scope.lookup(identifier(typeNameB), importingLibrary);
|
| - errorListener.assertErrors(CompileTimeErrorCode.AMBIGUOUS_IMPORT);
|
| + errorListener.assertErrors(StaticWarningCode.AMBIGUOUS_IMPORT);
|
| assertInstanceOf(MultiplyDefinedElement.class, element);
|
|
|
| Element[] conflictingElements = ((MultiplyDefinedElement) element).getConflictingElements();
|
|
|