Browse Source

nextcloud: Don't wait for container to be killed

pull/161/head
jld3103 2 years ago
parent
commit
0a8f97a164
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 14
      packages/nextcloud/test/helper.dart

14
packages/nextcloud/test/helper.dart

@ -36,12 +36,14 @@ class DockerContainer {
} }
} }
Future destroy() => runExecutableArguments( void destroy() => unawaited(
'docker', runExecutableArguments(
[ 'docker',
'kill', [
id, 'kill',
], id,
],
),
); );
Future<String> collectLogs() async { Future<String> collectLogs() async {

Loading…
Cancel
Save