We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e21db5 commit cb6bdfeCopy full SHA for cb6bdfe
tests/test_backup.py
@@ -85,6 +85,6 @@ def test_backup_download_with_pathlike(tmp_path: Path) -> None:
85
def test_backup_create() -> None:
86
client = SeaDexBackup(email, password) # type: ignore
87
new_backup = client.create(Path(f"{uuid4()}-made-by-pytest.zip"))
88
- assert new_backup in [backup for backup in client.backups]
+ assert new_backup in client.backups
89
client.delete(new_backup)
90
- assert new_backup not in [backup for backup in client.backups]
+ assert new_backup not in client.backups
0 commit comments