Skip to content

Commit 588c4cd

Browse files
committed
tests: fix tests.restore.RestoreTest.test_restore_chain
1 parent 278d433 commit 588c4cd

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
@@ -1616,15 +1616,15 @@ def test_restore_chain(self):
16161616
try:
16171617
self.backup_node(
16181618
backup_dir, 'node', node,
1619-
backup_type='delta', options=['--archive-timeout=0s'])
1619+
backup_type='delta', options=['-U', 'wrong_name'])
16201620
except ProbackupException as e:
16211621
pass
16221622

16231623
# Take ERROR DELTA
16241624
try:
16251625
self.backup_node(
16261626
backup_dir, 'node', node,
1627-
backup_type='delta', options=['--archive-timeout=0s'])
1627+
backup_type='delta', options=['-U', 'wrong_name'])
16281628
except ProbackupException as e:
16291629
pass
16301630

@@ -1636,7 +1636,7 @@ def test_restore_chain(self):
16361636
try:
16371637
self.backup_node(
16381638
backup_dir, 'node', node,
1639-
backup_type='delta', options=['--archive-timeout=0s'])
1639+
backup_type='delta', options=['-U', 'wrong_name'])
16401640
except ProbackupException as e:
16411641
pass
16421642

0 commit comments

Comments
 (0)