Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
keertip committed Jan 27, 2025
1 parent 4c8bb9b commit f8f796b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/end2end/model_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -915,12 +915,12 @@ void main() async {
for (final l in <LibraryElement2>{
...importLists
.expand((imports) => imports)
.map((import) => import.importedLibrary2?.uri)
.map((import) => import.uri)
.whereType<DirectiveUriWithLibrary>()
.map((uri) => uri.library2),
...exportLists
.expand((exports) => exports)
.map((export) => export.exportedLibrary2?.uri)
.map((export) => export.uri)
.whereType<DirectiveUriWithLibrary>()
.map((uri) => uri.library2)
})
Expand Down

0 comments on commit f8f796b

Please sign in to comment.