Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/borg/testsuite/crypto/crypto_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,10 @@ def test_repo_key_detect_does_not_raise_integrity_error(getpass, monkeypatch):
class TestDeriveKey(BaseTestCase):
# Create a simple KeyBase subclass with a non-empty crypt_key
class CustomKey(KeyBase):
TYPE = 0x42

def __init__(self, crypt_key, id_key):
super().__init__(None)
self.crypt_key = crypt_key
self.id_key = id_key

Expand Down
Loading