Fix unencrypted delivery and key removal #130

Merged
pfm merged 40 commits from 129-key-removal into main 2023-12-02 21:59:15 +01:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 43f43a4137 - Show all commits

View File

@ -10,7 +10,7 @@ class LacreDbKeyringTest(unittest.TestCase):
schema = dbk.KeyRingSchema()
db = dbk.DatabaseKeyRing(db_url, schema)
all = db.load()
identities = db.freeze_identities()
self.assertTrue('1CD245308F0963D038E88357973CF4D9387C44D7' in all)
self.assertTrue(all.has_email('alice@disposlab'))
self.assertTrue('1CD245308F0963D038E88357973CF4D9387C44D7' in identities)
self.assertTrue(identities.has_email('alice@disposlab'))