Skip to content

Commit

Permalink
tests: fix starting VMs in mime test
Browse files Browse the repository at this point in the history
Fixes 79d4b71
  • Loading branch information
marmarek committed Mar 18, 2021
1 parent df6407f commit f9bfcd8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions qubes/tests/integ/mime.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,9 @@ def setUp(self):
self.target_vm.template_for_dispvms = True
self.source_vm.default_dispvm = self.target_vm

done, not_done = self.loop.run_until_complete(asyncio.gather(
self.loop.run_until_complete(asyncio.gather(
self.source_vm.start(),
self.target_vm.start()))
for result in itertools.chain(done, not_done):
# catch any exceptions
result.result()


def get_window_class(self, winid, dispvm=False):
Expand Down

0 comments on commit f9bfcd8

Please sign in to comment.