| Index: pkg/analyzer/test/src/summary/summary_sdk_test.dart
|
| diff --git a/pkg/analyzer/test/src/summary/summary_sdk_test.dart b/pkg/analyzer/test/src/summary/summary_sdk_test.dart
|
| index 5ec807e35754b90e5ec61c16c21eed09255878cc..59d6cf42009a642d73eff2cad444053334686bdb 100644
|
| --- a/pkg/analyzer/test/src/summary/summary_sdk_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/summary_sdk_test.dart
|
| @@ -48,11 +48,11 @@ class SummarySdkAnalysisContextTest {
|
| return;
|
| }
|
| // verify that there are at least some interesting libraries in the bundle
|
| - expect(sdkBundle.prelinkedLibraryUris, contains('dart:core'));
|
| - expect(sdkBundle.prelinkedLibraryUris, contains('dart:async'));
|
| - expect(sdkBundle.prelinkedLibraryUris, contains('dart:html'));
|
| + expect(sdkBundle.linkedLibraryUris, contains('dart:core'));
|
| + expect(sdkBundle.linkedLibraryUris, contains('dart:async'));
|
| + expect(sdkBundle.linkedLibraryUris, contains('dart:html'));
|
| // verify every library
|
| - for (String uri in sdkBundle.prelinkedLibraryUris) {
|
| + for (String uri in sdkBundle.linkedLibraryUris) {
|
| // TODO(scheglov) breaks at _LibraryResynthesizer.buildImplicitTopLevelVariable
|
| if (uri == 'dart:io' || uri == 'dart:_isolate_helper') {
|
| continue;
|
|
|