Skip to content

Commit

Permalink
Test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Nov 9, 2023
1 parent af08d18 commit ede3df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/cli_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def rnp_decrypt_file(src, dst, password = PASSWORD):
RNP, ['--homedir', RNPDIR, '--pass-fd', str(pipe), '--decrypt', src, '--output', dst])
os.close(pipe)
if ret != 0:
raise_err('rnp decryption failed', out + err)
raise_err('rnp decryption failed', 'retcode=' + str(ret), out + err)

def rnp_sign_file_ex(src, dst, signers, passwords, options = None):
pipe = pswd_pipe('\n'.join(passwords))
Expand Down

0 comments on commit ede3df4

Please sign in to comment.