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

Unified Diff: pkg/front_end/test/physical_file_system_test.dart

Issue 2622423003: Simplify PhysicalFileSystem implementation. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « pkg/front_end/lib/physical_file_system.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/physical_file_system_test.dart
diff --git a/pkg/front_end/test/physical_file_system_test.dart b/pkg/front_end/test/physical_file_system_test.dart
index 2a8cbb6377b99bdb81620fa5435c3cd15df5c5bc..c3a2ef195a5819176487aded68f657262bf71288 100644
--- a/pkg/front_end/test/physical_file_system_test.dart
+++ b/pkg/front_end/test/physical_file_system_test.dart
@@ -120,7 +120,7 @@ class PhysicalFileSystemTest extends _BaseTest {
test_entityForUri() {
expect(
PhysicalFileSystem.instance
- .entityForUri(Uri.parse('$tempUri/file.txt'))
+ .entityForUri(Uri.parse('${tempUri}file.txt'))
.uri,
p.toUri(p.join(tempPath, 'file.txt')));
}
@@ -159,7 +159,7 @@ class PhysicalFileSystemTest extends _BaseTest {
test_entityForUri_normalize_dot() {
expect(
PhysicalFileSystem.instance
- .entityForUri(Uri.parse('$tempUri/./file.txt'))
+ .entityForUri(Uri.parse('${tempUri}./file.txt'))
.uri,
p.toUri(p.join(tempPath, 'file.txt')));
}
@@ -167,7 +167,7 @@ class PhysicalFileSystemTest extends _BaseTest {
test_entityForUri_normalize_dotDot() {
expect(
PhysicalFileSystem.instance
- .entityForUri(Uri.parse('$tempUri/foo/../file.txt'))
+ .entityForUri(Uri.parse('${tempUri}foo/../file.txt'))
.uri,
p.toUri(p.join(tempPath, 'file.txt')));
}
« no previous file with comments | « pkg/front_end/lib/physical_file_system.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698