Bump securetar to 2025.1.3 (#135762)

* Bump securetar to 2025.1.3

* Remove outdated fixture
This commit is contained in:
Erik Montnemery
2025-01-16 13:26:52 +01:00
committed by GitHub
parent 1cff45b8b7
commit 6cbe18ebbd
11 changed files with 24 additions and 30 deletions

View File

@@ -2560,13 +2560,13 @@ async def test_subscribe_event(
("agent_id", "backup_id", "password"),
[
# Invalid agent or backup
("no_such_agent", "ed1608a9", "hunter2"),
("no_such_agent", "c0cb53bd", "hunter2"),
("backup.local", "no_such_backup", "hunter2"),
# Legacy backup, which can't be streamed
("backup.local", "2bcb3113", "hunter2"),
# New backup, which can be streamed, try with correct and wrong password
("backup.local", "ed1608a9", "hunter2"),
("backup.local", "ed1608a9", "wrong_password"),
("backup.local", "c0cb53bd", "hunter2"),
("backup.local", "c0cb53bd", "wrong_password"),
],
)
@pytest.mark.usefixtures("mock_backups")