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

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

Issue 2844903002: Extend file-system abstraction with a couple methods, remove context (Closed)
Patch Set: fix test in windows bot Created 3 years, 8 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: pkg/front_end/test/dependency_grapher_test.dart
diff --git a/pkg/front_end/test/dependency_grapher_test.dart b/pkg/front_end/test/dependency_grapher_test.dart
index 826283d9d81bf8570db8dfd69dbf64c629ef1866..bc1a4729722dbfd4187fc515e5982e7b99fbfc4a 100644
--- a/pkg/front_end/test/dependency_grapher_test.dart
+++ b/pkg/front_end/test/dependency_grapher_test.dart
@@ -35,7 +35,7 @@ class DependencyGrapherTest {
// If no starting points given, assume the first entry in [contents] is the
// single starting point.
startingPoints ??= [contents.keys.first];
- var fileSystem = new MemoryFileSystem(pathos.posix, Uri.parse('file:///'));
+ var fileSystem = new MemoryFileSystem(Uri.parse('file:///'));
contents.forEach((path, text) {
fileSystem.entityForUri(pathos.posix.toUri(path)).writeAsStringSync(text);
});
« no previous file with comments | « pkg/front_end/lib/physical_file_system.dart ('k') | pkg/front_end/test/incremental_kernel_generator_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698