| Index: compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
|
| ===================================================================
|
| --- compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (revision 11887)
|
| +++ compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (working copy)
|
| @@ -32,9 +32,6 @@
|
| Map<String, DartLibrary> librariesMap = reader.getLibrariesMap();
|
| assertTrue(!librariesMap.isEmpty());
|
| for (Entry<String, DartLibrary> entry : librariesMap.entrySet()) {
|
| - if (entry.getValue().getCategory().equals("Internal")){
|
| - continue;
|
| - }
|
| String path = entry.getValue().getPath();
|
| File file = new File(base.resolve(new URI(null, null, path, null, null)).normalize());
|
| if (!file.exists()) {
|
| @@ -53,8 +50,7 @@
|
| assertTrue(library != null);
|
| assertEquals("dart:coreimpl",library.getShortName());
|
| assertTrue(library.isImplementation());
|
| - assertEquals("Shared", library.getCategory());
|
| -
|
| + assertEquals("Shared", library.getCategory());
|
| }
|
|
|
| }
|
|
|