Skip to content

Commit

Permalink
Fix test "test_cancel_backup".
Browse files Browse the repository at this point in the history
  • Loading branch information
vitlibar committed Feb 23, 2024
1 parent f944fae commit b1e2b8d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ def test_cancel_backup():
start_restore(try_restore_id_1, backup_id)
cancel_restore(try_restore_id_1)

node.query(f"DROP TABLE tbl SYNC")
# IF EXISTS because it's unknown whether RESTORE had managed to create a table before it got cancelled.
node.query(f"DROP TABLE IF EXISTS tbl SYNC")

restore_id = uuid.uuid4().hex
start_restore(restore_id, backup_id)
Expand Down

0 comments on commit b1e2b8d

Please sign in to comment.