Skip to content

Commit

Permalink
Merge pull request #5979 from freedomofpress/remove-old-key
Browse files Browse the repository at this point in the history
Removes old release signing key from securedrop-keyring
  • Loading branch information
conorsch authored Aug 13, 2021
2 parents 058d5a0 + d934e03 commit 57aa2d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file not shown.
6 changes: 3 additions & 3 deletions molecule/testinfra/common/test_fpf_apt_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def test_fpf_apt_repo_fingerprint(host):
* 2016-10
* 2021-06
So let's make sure that the fingerprints accepted by the system covers both
in the interim.
The old key has been removed, so only the new key's fingerprint should be
returned.
"""

c = host.run('apt-key finger')
Expand All @@ -53,7 +53,7 @@ def test_fpf_apt_repo_fingerprint(host):
fpf_gpg_pub_key_info_new = "2359 E653 8C06 13E6 5295 5E6C 188E DD3B 7B22 E6A3"

assert c.rc == 0
assert fpf_gpg_pub_key_info_old in c.stdout
assert fpf_gpg_pub_key_info_old not in c.stdout
assert fpf_gpg_pub_key_info_new in c.stdout


Expand Down

0 comments on commit 57aa2d4

Please sign in to comment.