From: David Bremner Date: Sat, 20 Sep 2014 05:41:35 +0000 (+0200) Subject: test/emacs: globally force the html renderer to html2text X-Git-Tag: 0.19_rc1~78 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=b4892677016c7a994dea75b8ea71bbde92ac17cb;hp=ae27403641cf4d897ce3a2ac21dc6bad5cce7b5d test/emacs: globally force the html renderer to html2text Previously we did this for a single test, but some other proposed tests ( id:1398105468-14317-3-git-send-email-amdragon@mit.edu ) show similar breakage when switching renderers. --- diff --git a/test/T310-emacs.sh b/test/T310-emacs.sh index ac966e52..c3024021 100755 --- a/test/T310-emacs.sh +++ b/test/T310-emacs.sh @@ -483,7 +483,7 @@ test_expect_equal_file OUTPUT EXPECTED test_begin_subtest "Reply within emacs to an html-only message" add_message '[content-type]="text/html"' \ '[body]="Hi,
This is an HTML test message.

OK?"' -test_emacs "(let ((message-hidden-headers '()) (mm-text-html-renderer 'html2text)) +test_emacs "(let ((message-hidden-headers '())) (notmuch-show \"id:${gen_msg_id}\") (notmuch-show-reply) (test-output))" diff --git a/test/test-lib.el b/test/test-lib.el index 36afe630..bbc03cba 100644 --- a/test/test-lib.el +++ b/test/test-lib.el @@ -181,3 +181,8 @@ nothing." ;; suite (setq notmuch-tag-deleted-formats '((".*" nil))) + +;; force a common html renderer, to avoid test variations between +;; environments + +(setq mm-text-html-renderer 'html2text)