fix: remove extra quote when executing a note indexation and update deps
This commit is contained in:
parent
5908a70691
commit
67595b3220
11 changed files with 228 additions and 305 deletions
|
|
@ -33,7 +33,9 @@ def test_instance_encryptor_from_age_keys(halig_path, notebooks_path):
|
|||
encryptor = Encryptor(settings)
|
||||
for identity in identities:
|
||||
assert str(identity) in [str(identity) for identity in encryptor.identities]
|
||||
assert str(identity.to_public()) in [str(recipient) for recipient in encryptor.recipients]
|
||||
assert str(identity.to_public()) in [
|
||||
str(recipient) for recipient in encryptor.recipients
|
||||
]
|
||||
|
||||
|
||||
def test_encrypt(encryptor: Encryptor, ssh_identity):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue