Skip to content

Commit 4390ad2

Browse files
committed
tests: fix tests.restore.RestoreTest.test_restore_chain_with_corrupted_backup
1 parent 588c4cd commit 4390ad2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/restore.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,7 @@ def test_restore_chain_with_corrupted_backup(self):
17041704
try:
17051705
self.backup_node(
17061706
backup_dir, 'node', node,
1707-
backup_type='page', options=['--archive-timeout=0s'])
1707+
backup_type='page', options=['-U', 'wrong_name'])
17081708
except ProbackupException as e:
17091709
pass
17101710

@@ -1716,7 +1716,7 @@ def test_restore_chain_with_corrupted_backup(self):
17161716
try:
17171717
self.backup_node(
17181718
backup_dir, 'node', node,
1719-
backup_type='delta', options=['--archive-timeout=0s'])
1719+
backup_type='delta', options=['-U', 'wrong_name'])
17201720
except ProbackupException as e:
17211721
pass
17221722

@@ -1728,7 +1728,7 @@ def test_restore_chain_with_corrupted_backup(self):
17281728
try:
17291729
self.backup_node(
17301730
backup_dir, 'node', node,
1731-
backup_type='delta', options=['--archive-timeout=0s'])
1731+
backup_type='delta', options=['-U', 'wrong_name'])
17321732
except ProbackupException as e:
17331733
pass
17341734

0 commit comments

Comments
 (0)