mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Test: fix draft test for emacs23
emacs24 and emacs23 have different secure tag defaults: in particular, mml-secure-message-sign only signs the part on emacs23 but the whole message on emacs24. This difference makes one of the draft tests fail (which causes a cascade of later failures) on emacs23. It seems that travis uses emacs23 so it is useful to fix this. We do this by forcing the whole message to be signed in either case -- the code snippet is extracted from mml-secure-message-sign on emacs24.
This commit is contained in:
parent
2dd96d6bd6
commit
70c6ac377b
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,9 @@ test_begin_subtest "Saving a signed draft adds header"
|
|||
test_emacs '(notmuch-mua-mail)
|
||||
(message-goto-subject)
|
||||
(insert "draft-test-0003")
|
||||
(mml-secure-message-sign)
|
||||
;; We would use (mml-secure-message-sign) but on emacs23
|
||||
;; that only signs the part, not the whole message.
|
||||
(mml-secure-message mml-secure-method '\''sign)
|
||||
(notmuch-draft-save)
|
||||
(test-output)'
|
||||
header_count=$(notmuch show --format=raw subject:draft-test-0003 | grep -c ^X-Notmuch-Emacs-Secure)
|
||||
|
|
Loading…
Reference in a new issue