tests: Remove broken test_verify_stop_restarts_immediately test

Before VerifyStart can be called again the current verify operation
needs to be completed. This requires waiting for VerifyStop to happen.

As such, remove the test, which is expected to fail randomly.
This commit is contained in:
Benjamin Berg
2021-07-30 23:10:11 +02:00
parent 88d7d97c0d
commit 80eb673e83

View File

@ -2679,15 +2679,6 @@ class FPrintdVirtualDeviceVerificationTests(FPrintdVirtualDeviceBaseTest):
self.assertIsNone(self._last_result)
self.assertFalse(self.finger_present)
def test_verify_stop_restarts_immediately(self):
self.send_image('tented_arch')
self.assertVerifyNoMatch()
self.call_device_method_async('VerifyStop', '()', [])
self.call_device_method_async('VerifyStart', '(s)', [self.verify_finger])
self.wait_for_device_reply(expected_replies=2)
def test_verify_stop_waits_for_completion(self):
self.stop_on_teardown = False