| Index: pkg/analysis_server/test/abstract_context.dart
|
| diff --git a/pkg/analysis_server/test/abstract_context.dart b/pkg/analysis_server/test/abstract_context.dart
|
| index 423d8d7a6eb4ddb91daf06ecec255c733577c008..bb9a85aa812fec7b3800a90f880b1addad1ad67c 100644
|
| --- a/pkg/analysis_server/test/abstract_context.dart
|
| +++ b/pkg/analysis_server/test/abstract_context.dart
|
| @@ -44,9 +44,9 @@ class AbstractContextTest {
|
| UriResolver resourceResolver;
|
| AnalysisContext context;
|
|
|
| - Source addSource(String path, String content) {
|
| + Source addSource(String path, String content, [Uri uri]) {
|
| File file = provider.newFile(path, content);
|
| - Source source = file.createSource();
|
| + Source source = file.createSource(uri);
|
| ChangeSet changeSet = new ChangeSet();
|
| changeSet.addedSource(source);
|
| context.applyChanges(changeSet);
|
|
|