From f4cdabccd0e75d94d7f6f4d50684afc67bbf7f0d Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Mon, 21 Apr 2014 14:37:39 -0400 Subject: test: New tests for Emacs charset handling The test of viewing 8bit messages is known-broken. The rest pass, but for very fragile reasons. The next several commits will fix the known-broken test and make our charset handling robust. --- test/test-lib.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/test-lib.el') diff --git a/test/test-lib.el b/test/test-lib.el index bbc03cba..04c8d634 100644 --- a/test/test-lib.el +++ b/test/test-lib.el @@ -59,7 +59,9 @@ "Save visible text in current buffer to file FILENAME. Default FILENAME is OUTPUT." (notmuch-post-command) - (let ((text (visible-buffer-string))) + (let ((text (visible-buffer-string)) + ;; Tests expect output in UTF-8 encoding + (coding-system-for-write 'utf-8)) (with-temp-file (or filename "OUTPUT") (insert text)))) (defun visible-buffer-string () -- cgit v1.2.3