Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HosseinYousefi committed Nov 29, 2024
1 parent 74326c7 commit 2440e1a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkgs/jnigen/test/kotlin_test/runtime_test_registrant.dart
Original file line number Diff line number Diff line change
Expand Up @@ -231,17 +231,17 @@ void registerTests(String groupName, TestRunnerCallback test) {
null,
);
});
test('Inner class', () {
using((arena) {
final obj = testObject(arena);
final innerObj =
Nullability_InnerClass<JString?, JString, JInteger>(obj,
V: JInteger.type);
expect(
innerObj.f,
isA<void Function(JString?, JString, JInteger)>(),
);
});
});
test('Inner class', () {
using((arena) {
final obj = testObject(arena);
final innerObj = Nullability_InnerClass<JString?, JString, JInteger>(
obj,
V: JInteger.type);
expect(
innerObj.f,
isA<void Function(JString?, JString, JInteger)>(),
);
});
});
});
Expand Down

0 comments on commit 2440e1a

Please sign in to comment.