Fix full test report
This commit is contained in:
parent
9f8bb77a6e
commit
d8a6f14386
1 changed files with 3 additions and 3 deletions
|
@ -131,12 +131,12 @@ gpg1 = subprocess.Popen(['/usr/bin/gpg', '-d'],
|
||||||
stdin=subprocess.PIPE,
|
stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
gpg1o, _ = gpg1.communicate(msg1.get_payload()[1].get_payload(decode=True))
|
gpg1o, _ = gpg1.communicate(msg1.get_payload()[1].get_payload(decode=True))
|
||||||
print(f'Key conflict message (decrypted):\n{gpg1o}')
|
print(f'Key conflict message (decrypted):\n{gpg1o.decode()}')
|
||||||
gpg2 = subprocess.Popen(['/usr/bin/gpg', '-d'],
|
gpg2 = subprocess.Popen(['/usr/bin/gpg', '-d'],
|
||||||
stdin=subprocess.PIPE,
|
stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
gpg1o, _ = gpg2.communicate(msg2.get_payload()[1].get_payload(decode=True))
|
gpg2o, _ = gpg2.communicate(msg2.get_payload()[1].get_payload(decode=True))
|
||||||
print(f'Admin report message (decrypted):\n{gpg2o}')
|
print(f'Admin report message (decrypted):\n{gpg2o.decode()}')
|
||||||
|
|
||||||
# Test conflict statefile
|
# Test conflict statefile
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue