Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes old release signing key from securedrop-keyring #5979

Merged
merged 1 commit into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
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
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