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

Unified Diff: compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java

Issue 10832274: Initial parser changes for the new directive syntax (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/common/LibrarySourceFileTest.java
===================================================================
--- compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java (revision 10597)
+++ compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java (working copy)
@@ -61,20 +61,6 @@
assertFalse(iter.hasNext());
}
- public void testSpacesInPaths() throws IOException {
- String sourceName = "Source with Spaces.dart";
- LibraryUnit appUnit = getLibraryUnit("Library Source With Spaces.dart",
- "library {\n" +
- " import = [\n" +
- " ]\n" +
- " source = [\n" +
- "'Source with Spaces.dart'\n" +
- "]\n" +
- "}");
- LibrarySource source = appUnit.getSource();
- assertNotNull(source.getSourceFor(sourceName));
- }
-
/**
* Answer the {@link LibraryUnit} on which tests are performed
*

Powered by Google App Engine
This is Rietveld 408576698