Skip to content

Commit d5fd845

Browse files
committed
Fix large test
1 parent eb31baa commit d5fd845

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkgs/ffigen/test/large_integration_tests/large_objc_test.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@TestOn('mac-os')
77

88
// This is a slow test.
9-
@Timeout(Duration(minutes: 2))
9+
@Timeout(Duration(minutes: 5))
1010
library;
1111

1212
import 'dart:async';
@@ -28,7 +28,7 @@ Future<int> run(String exe, List<String> args) async {
2828

2929
void main() {
3030
test('Large ObjC integration test', () async {
31-
// Reducing the bindings to a random subset to that the test completes in a
31+
// Reducing the bindings to a random subset so that the test completes in a
3232
// reasonable amount of time.
3333
// TODO(https://github.com/dart-lang/sdk/issues/56247): Remove this.
3434
const inclusionRatio = 0.1;
@@ -41,10 +41,12 @@ void main() {
4141

4242
// TODO(https://github.com/dart-lang/native/issues/1220): Allow these.
4343
const disallowedMethods = {
44-
'cachePolicy',
44+
'accessKey',
4545
'allowsConstrainedNetworkAccess',
46-
'tag',
46+
'attributedString',
47+
'cachePolicy',
4748
'hyphenationFactor',
49+
'tag',
4850
};
4951
final interfaceFilter = DeclarationFilters(
5052
shouldInclude: randInclude,

0 commit comments

Comments
 (0)