Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe committed Dec 18, 2024
1 parent ce96aa3 commit 04cf6d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkgs/ffigen/test/native_objc_test/global_native_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ void main() {
test('Global block', () {
globalBlock = ObjCBlock_Int32_Int32.fromFunction((int x) => x * 10);
expect(globalBlock!(123), 1230);
globalBlock =
ObjCBlock_Int32_Int32.fromFunction((int x) => x + 1000);
globalBlock = ObjCBlock_Int32_Int32.fromFunction((int x) => x + 1000);
expect(globalBlock!(456), 1456);
});

Expand Down

0 comments on commit 04cf6d4

Please sign in to comment.