Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
changelog and format
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe committed Sep 8, 2023
1 parent a9179ad commit 8422f19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Fix invalid exceptional return value ObjCBlocks that return floats.
- Fix return_of_invalid_type analysis error for ObjCBlocks.
- Fix crash in ObjC methods and blocks that return structs by value.
- Fix ObjC methods returning instancetype having the wrong type in sublasses.
- Bump min SDK version to 3.2.0-114.0.dev.

# 9.0.1
Expand Down
6 changes: 4 additions & 2 deletions test/native_objc_test/inherited_instancetype_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ void main() {
group('inheritedInstancetype', () {
setUpAll(() {
logWarnings();
final dylib = File('test/native_objc_test/inherited_instancetype_test.dylib');
final dylib =
File('test/native_objc_test/inherited_instancetype_test.dylib');
verifySetupFile(dylib);
lib = InheritedInstancetypeTestObjCLibrary(DynamicLibrary.open(dylib.absolute.path));
lib = InheritedInstancetypeTestObjCLibrary(
DynamicLibrary.open(dylib.absolute.path));
generateBindingsForCoverage('inherited_instancetype');
});

Expand Down

0 comments on commit 8422f19

Please sign in to comment.