| Index: pkg/analysis_services/test/index/store/codec_test.dart
|
| diff --git a/pkg/analysis_services/test/index/store/codec_test.dart b/pkg/analysis_services/test/index/store/codec_test.dart
|
| index f62b94570f2a8972c44d573c61f935b5b65ac806..e0b6a0358143cf7584640626f47ae8ef5c876b1a 100644
|
| --- a/pkg/analysis_services/test/index/store/codec_test.dart
|
| +++ b/pkg/analysis_services/test/index/store/codec_test.dart
|
| @@ -147,7 +147,7 @@ main() {
|
| }
|
| // check strings, "foo" as a single string, no "foo@17" or "bar@35"
|
| expect(stringCodec.nameToIndex, hasLength(4));
|
| - expect(stringCodec.nameToIndex, containsPair('f/test.dart', 0));
|
| + expect(stringCodec.nameToIndex, containsPair('file:///test.dart', 0));
|
| expect(stringCodec.nameToIndex, containsPair('main', 1));
|
| expect(stringCodec.nameToIndex, containsPair('foo', 2));
|
| expect(stringCodec.nameToIndex, containsPair('bar', 3));
|
| @@ -176,7 +176,7 @@ main() {
|
| }
|
| // check strings, "foo" as a single string, no "foo@21" or "foo@47"
|
| expect(stringCodec.nameToIndex, hasLength(3));
|
| - expect(stringCodec.nameToIndex, containsPair('f/test.dart', 0));
|
| + expect(stringCodec.nameToIndex, containsPair('file:///test.dart', 0));
|
| expect(stringCodec.nameToIndex, containsPair('main', 1));
|
| expect(stringCodec.nameToIndex, containsPair('foo', 2));
|
| }
|
| @@ -193,7 +193,7 @@ main() {
|
| expect(codec.decode(context, id), element);
|
| // check strings
|
| expect(stringCodec.nameToIndex, hasLength(3));
|
| - expect(stringCodec.nameToIndex, containsPair('f/test.dart', 0));
|
| + expect(stringCodec.nameToIndex, containsPair('file:///test.dart', 0));
|
| expect(stringCodec.nameToIndex, containsPair('main', 1));
|
| expect(stringCodec.nameToIndex, containsPair('foo', 2));
|
| }
|
|
|