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

Unified Diff: pkg/analysis_server/test/resource_test.dart

Issue 308713002: Handle file additions/removals in ContextDirectoryManager. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Konstantin's comments Created 6 years, 7 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/analysis_server/test/resource_test.dart
diff --git a/pkg/analysis_server/test/resource_test.dart b/pkg/analysis_server/test/resource_test.dart
index 535b5db8d734835621bc4b48cf73786569148c97..15f319b9098fa2ba05ccc39f330524f43726f980 100644
--- a/pkg/analysis_server/test/resource_test.dart
+++ b/pkg/analysis_server/test/resource_test.dart
@@ -242,7 +242,7 @@ main() {
test('fullName', () {
File file = provider.getResource('/foo/bar/file.txt');
- expect(file.fullName, '/foo/bar/file.txt');
+ expect(file.path, '/foo/bar/file.txt');
});
test('hashCode', () {
@@ -553,7 +553,7 @@ main() {
});
test('fullName', () {
- expect(file.fullName, path);
+ expect(file.path, path);
});
test('hashCode', () {

Powered by Google App Engine
This is Rietveld 408576698