Browse Source

tests: fix starting VMs in mime test

Fixes 79d4b7162af292f037c3a504a8a1314ec4251f38
Marek Marczykowski-Górecki 3 years ago
parent
commit
f9bfcd8732
1 changed files with 1 additions and 4 deletions
  1. 1 4
      qubes/tests/integ/mime.py

+ 1 - 4
qubes/tests/integ/mime.py

@@ -65,12 +65,9 @@ class TC_50_MimeHandlers:
         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):