| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryScopeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryScopeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryScopeTest.java
|
| index 4ae0f028ba5cdab4101b9743a35e87e7a1bd5993..ba4c3c63625cd76d8af9eb50f0f4d5e736cd0435 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryScopeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/scope/LibraryScopeTest.java
|
| @@ -46,7 +46,7 @@ public class LibraryScopeTest extends ResolverTestCase {
|
| definingLibrary.setImports(new ImportElement[] {importElement});
|
| GatheringErrorListener errorListener = new GatheringErrorListener();
|
| Scope scope = new LibraryScope(definingLibrary, errorListener);
|
| - assertEquals(importedType, scope.lookup(importedTypeName, definingLibrary));
|
| + assertEquals(importedType, scope.lookup(identifier(importedTypeName), definingLibrary));
|
| }
|
|
|
| public void test_getDefiningLibrary() throws Exception {
|
|
|