Index: pkg/analyzer/test/generated/all_the_rest_test.dart |
diff --git a/pkg/analyzer/test/generated/all_the_rest_test.dart b/pkg/analyzer/test/generated/all_the_rest_test.dart |
index cabe5d7d50f1bd90c5cd8693df4d6d0febed1e62..187bcce84d86eed4b129a8738ac385bf173e085c 100644 |
--- a/pkg/analyzer/test/generated/all_the_rest_test.dart |
+++ b/pkg/analyzer/test/generated/all_the_rest_test.dart |
@@ -8944,7 +8944,7 @@ class SDKLibrariesReaderTest extends EngineTestCase { |
final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
'first' : const LibraryInfo( |
'first/first.dart', |
- category: 'First', |
+ categories: 'Client', |
documented: true, |
platforms: VM_PLATFORM, |
dart2jsPath: 'first/first_dart2js.dart'), |
@@ -8953,7 +8953,7 @@ final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
expect(libraryMap.size(), 1); |
SdkLibrary first = libraryMap.getLibrary("dart:first"); |
expect(first, isNotNull); |
- expect(first.category, "First"); |
+ expect(first.category, "Client"); |
expect(first.path, "first/first_dart2js.dart"); |
expect(first.shortName, "dart:first"); |
expect(first.isDart2JsLibrary, false); |
@@ -8976,13 +8976,13 @@ final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
'first' : const LibraryInfo( |
'first/first.dart', |
- category: 'First', |
+ categories: 'Client', |
documented: true, |
platforms: VM_PLATFORM), |
'second' : const LibraryInfo( |
'second/second.dart', |
- category: 'Second', |
+ categories: 'Server', |
documented: false, |
implementation: true, |
platforms: 0), |
@@ -8991,7 +8991,7 @@ final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
expect(libraryMap.size(), 2); |
SdkLibrary first = libraryMap.getLibrary("dart:first"); |
expect(first, isNotNull); |
- expect(first.category, "First"); |
+ expect(first.category, "Client"); |
expect(first.path, "first/first.dart"); |
expect(first.shortName, "dart:first"); |
expect(first.isDart2JsLibrary, false); |
@@ -9000,7 +9000,7 @@ final Map<String, LibraryInfo> LIBRARIES = const <String, LibraryInfo> { |
expect(first.isVmLibrary, true); |
SdkLibrary second = libraryMap.getLibrary("dart:second"); |
expect(second, isNotNull); |
- expect(second.category, "Second"); |
+ expect(second.category, "Server"); |
expect(second.path, "second/second.dart"); |
expect(second.shortName, "dart:second"); |
expect(second.isDart2JsLibrary, false); |