Skip to content

Commit 1610a27

Browse files
authored
Remove dart_plugin_registry_test timeouts (flutter#76838)
1 parent 10a5544 commit 1610a27

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dev/devicelab/lib/tasks/dart_plugin_registry_tests.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,16 +159,14 @@ class PluginPlatformInterfaceMacOS {
159159
});
160160

161161
section('Wait for registry execution');
162-
await registryExecutedCompleter.future
163-
.timeout(const Duration(minutes: 1));
162+
await registryExecutedCompleter.future;
164163

165164
// Hot restart.
166165
run.stdin.write('R');
167166
registryExecutedCompleter = Completer<void>();
168167

169168
section('Wait for registry execution after hot restart');
170-
await registryExecutedCompleter.future
171-
.timeout(const Duration(minutes: 1));
169+
await registryExecutedCompleter.future;
172170

173171
subscription.cancel();
174172
run.kill();

0 commit comments

Comments
 (0)