From 4390ad297b832bf18d796f8b6c61a51116a7231d Mon Sep 17 00:00:00 2001 From: Grigory Smolkin Date: Thu, 22 Apr 2021 18:37:29 +0300 Subject: [PATCH] tests: fix tests.restore.RestoreTest.test_restore_chain_with_corrupted_backup --- tests/restore.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/restore.py b/tests/restore.py index f42d4fdb..2a11a27a 100644 --- a/tests/restore.py +++ b/tests/restore.py @@ -1704,7 +1704,7 @@ class RestoreTest(ProbackupTest, unittest.TestCase): try: self.backup_node( backup_dir, 'node', node, - backup_type='page', options=['--archive-timeout=0s']) + backup_type='page', options=['-U', 'wrong_name']) except ProbackupException as e: pass @@ -1716,7 +1716,7 @@ class RestoreTest(ProbackupTest, unittest.TestCase): try: self.backup_node( backup_dir, 'node', node, - backup_type='delta', options=['--archive-timeout=0s']) + backup_type='delta', options=['-U', 'wrong_name']) except ProbackupException as e: pass @@ -1728,7 +1728,7 @@ class RestoreTest(ProbackupTest, unittest.TestCase): try: self.backup_node( backup_dir, 'node', node, - backup_type='delta', options=['--archive-timeout=0s']) + backup_type='delta', options=['-U', 'wrong_name']) except ProbackupException as e: pass