Skip to content

Commit

Permalink
Migrate testing/symbols to null safety (flutter#35809)
Browse files Browse the repository at this point in the history
  • Loading branch information
mit-mit authored Aug 30, 2022
1 parent c2a2a56 commit 8ab3b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/symbols/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: verify_exported
publish_to: none
environment:
sdk: '>=2.11.0 <3.0.0'
sdk: '>=2.12.0 <3.0.0'

# Do not add any dependencies that require more than what is provided in
# //third_party/pkg, //third_party/dart/pkg, or
Expand Down
2 changes: 1 addition & 1 deletion testing/symbols/verify_exported.dart
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int _checkAndroid(String outPath, String nmPath, Iterable<String> builds) {
final Map<String, String> badSymbols = <String, String>{};
for (final String key in entryMap.keys) {
if (entryMap[key] != expectedSymbols[key]) {
badSymbols[key] = entryMap[key];
badSymbols[key] = entryMap[key]!;
}
}
if (badSymbols.isNotEmpty) {
Expand Down

0 comments on commit 8ab3b8f

Please sign in to comment.