tests/backup: report failure when error was expected but none detected
This commit is contained in:
parent
e5af64f2bf
commit
44eed25511
@ -774,6 +774,9 @@ class BackupTestsMixin(SystemTestsMixin):
|
|||||||
errors = []
|
errors = []
|
||||||
if expect_errors is None:
|
if expect_errors is None:
|
||||||
expect_errors = []
|
expect_errors = []
|
||||||
|
else:
|
||||||
|
self.assertFalse(self.error_detected.empty(),
|
||||||
|
"Restore errors expected, but none detected")
|
||||||
while not self.error_detected.empty():
|
while not self.error_detected.empty():
|
||||||
current_error = self.error_detected.get()
|
current_error = self.error_detected.get()
|
||||||
if any(map(current_error.startswith, expect_errors)):
|
if any(map(current_error.startswith, expect_errors)):
|
||||||
|
Loading…
Reference in New Issue
Block a user