aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2012-01-25 13:54:00 +0000
committerGravatar David Bremner <bremner@debian.org>2012-01-27 07:59:40 -0400
commitcd03f214470996ec03b126f86afafef5296fd879 (patch)
treed12c3749f2d70a241280b715a979410ccb8c7e19 /test
parent50d65de394cd78bd215918e251646c32eb0c0e52 (diff)
emacs: Another special case for `notmuch-show-clean-address'.
Remove backslashes.
Diffstat (limited to 'test')
-rw-r--r--test/emacs-address-cleaning.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/emacs-address-cleaning.el b/test/emacs-address-cleaning.el
index 19e9e055..3b0b109b 100644
--- a/test/emacs-address-cleaning.el
+++ b/test/emacs-address-cleaning.el
@@ -20,10 +20,12 @@
(let* ((input '("ДБ <db-uknot@stop.me.uk>"
"foo (at home) <foo@bar.com>"
"foo [at home] <foo@bar.com>"
- "Foo Bar"))
+ "Foo Bar"
+ "Fred Dibna \\[extraordinaire\\] <fred@dibna.com>"))
(expected '("ДБ <db-uknot@stop.me.uk>"
"foo (at home) <foo@bar.com>"
"foo [at home] <foo@bar.com>"
- "Foo Bar"))
+ "Foo Bar"
+ "Fred Dibna [extraordinaire] <fred@dibna.com>"))
(output (mapcar #'notmuch-show-clean-address input)))
(notmuch-test-expect-equal output expected)))