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. 4
      packages/nextcloud/test/helper.dart

4
packages/nextcloud/test/helper.dart

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

Loading…
Cancel
Save