Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java

Issue 10890030: Move core and coreimpl from corelib/ to lib/core and lib/coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java b/compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java
index bae65dfdde411bb8f85694a0e254606ad49b832c..bbd43c1a75de302bcb67644913b514c73eb7dc79 100644
--- a/compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java
+++ b/compiler/javatests/com/google/dart/compiler/PackageLibraryManagerTest.java
@@ -30,7 +30,7 @@ public class PackageLibraryManagerTest extends TestCase {
assertNotNull(fullUri);
assertEquals("dart", fullUri.getScheme());
assertEquals("core", fullUri.getHost());
- assertTrue(getPath(fullUri).endsWith("/core_runtime.dart"));
+ assertTrue(getPath(fullUri).endsWith("/core.dart"));
}
public void testExpand2() throws Exception {
@@ -39,7 +39,7 @@ public class PackageLibraryManagerTest extends TestCase {
assertNotNull(fullUri);
assertEquals("dart", fullUri.getScheme());
assertEquals("coreimpl", fullUri.getHost());
- assertTrue(getPath(fullUri).endsWith("/coreimpl_runtime.dart"));
+ assertTrue(getPath(fullUri).endsWith("/coreimpl.dart"));
}
public void testExpand3() throws Exception {
@@ -49,7 +49,7 @@ public class PackageLibraryManagerTest extends TestCase {
assertNotNull(fullUri2);
assertEquals("dart", fullUri2.getScheme());
assertEquals("coreimpl", fullUri2.getHost());
- assertTrue(getPath(fullUri2).endsWith("/coreimpl_runtime.dart"));
+ assertTrue(getPath(fullUri2).endsWith("/coreimpl.dart"));
}
public void testExpand4() throws Exception {
@@ -65,7 +65,7 @@ public class PackageLibraryManagerTest extends TestCase {
assertNotNull(translatedURI);
String scheme = translatedURI.getScheme();
assertTrue(scheme.equals("file"));
- assertTrue(getPath(translatedURI).endsWith("/core_runtime.dart"));
+ assertTrue(getPath(translatedURI).endsWith("/core.dart"));
}
public void testTranslate2() throws Exception {
@@ -75,7 +75,7 @@ public class PackageLibraryManagerTest extends TestCase {
assertNotNull(translatedURI);
String scheme = translatedURI.getScheme();
assertTrue(scheme.equals("file"));
- assertTrue(getPath(translatedURI).endsWith("/coreimpl_runtime.dart"));
+ assertTrue(getPath(translatedURI).endsWith("/coreimpl.dart"));
}
public void testTranslate3() throws Exception {

Powered by Google App Engine
This is Rietveld 408576698