Skip to content

Commit f8f796b

Browse files
committed
Fix test failure
1 parent 4c8bb9b commit f8f796b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/end2end/model_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,12 +915,12 @@ void main() async {
915915
for (final l in <LibraryElement2>{
916916
...importLists
917917
.expand((imports) => imports)
918-
.map((import) => import.importedLibrary2?.uri)
918+
.map((import) => import.uri)
919919
.whereType<DirectiveUriWithLibrary>()
920920
.map((uri) => uri.library2),
921921
...exportLists
922922
.expand((exports) => exports)
923-
.map((export) => export.exportedLibrary2?.uri)
923+
.map((export) => export.uri)
924924
.whereType<DirectiveUriWithLibrary>()
925925
.map((uri) => uri.library2)
926926
})

0 commit comments

Comments
 (0)