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

Unified Diff: pkg/analysis_server/test/src/computer/import_elements_computer_test.dart

Issue 2991893002: Remove the uri from the ImportedElements object in the experimental spec API (Closed)
Patch Set: Created 3 years, 5 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/src/computer/import_elements_computer_test.dart
diff --git a/pkg/analysis_server/test/src/computer/import_elements_computer_test.dart b/pkg/analysis_server/test/src/computer/import_elements_computer_test.dart
index af43eafcafe63602f2a36e12921649b4da700a65..cb7f56164bfe9784973218e279945d96deb3ceb2 100644
--- a/pkg/analysis_server/test/src/computer/import_elements_computer_test.dart
+++ b/pkg/analysis_server/test/src/computer/import_elements_computer_test.dart
@@ -46,8 +46,8 @@ main() {}
@failingTest
test_bare_none() {
List<ImportedElements> elements = <ImportedElements>[
- new ImportedElements(provider.convertPath('/p/lib/a.dart'),
- 'package:p/a.dart', '', <String>['A']),
+ new ImportedElements(
+ provider.convertPath('/p/lib/a.dart'), '', <String>['A']),
];
List<SourceEdit> edits = _computeEditsFor(elements);
expect(edits, hasLength(1));

Powered by Google App Engine
This is Rietveld 408576698