mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
test/thread-naming: remove excess escaping from sender address.
This is another case where the behaviour of gmime-2.6 and gmime-3.0 seems to differ. It may be that we prefer the more lax parsing of the previous version, but that should be tested separately.
This commit is contained in:
parent
233092577c
commit
51cf6dbab2
1 changed files with 5 additions and 5 deletions
|
@ -66,11 +66,11 @@ test_expect_equal "$output" "thread:XXX 2001-01-12 [6/8] Notmuch Test Suite; t
|
||||||
test_begin_subtest "Use empty subjects if necessary."
|
test_begin_subtest "Use empty subjects if necessary."
|
||||||
add_message '[subject]="@FORCE_EMPTY"' \
|
add_message '[subject]="@FORCE_EMPTY"' \
|
||||||
'[date]="Sat, 13 Jan 2001 15:43:45 -0000"' \
|
'[date]="Sat, 13 Jan 2001 15:43:45 -0000"' \
|
||||||
'[from]="Empty Sender \<empty_test@notmuchmail.org\>"'
|
'[from]="Empty Sender <empty_test@notmuchmail.org>"'
|
||||||
empty_parent=${gen_msg_id}
|
empty_parent=${gen_msg_id}
|
||||||
add_message '[subject]="@FORCE_EMPTY"' \
|
add_message '[subject]="@FORCE_EMPTY"' \
|
||||||
'[date]="Sun, 14 Jan 2001 15:43:45 -0000"' \
|
'[date]="Sun, 14 Jan 2001 15:43:45 -0000"' \
|
||||||
'[from]="Empty Sender \<empty_test@notmuchmail.org\>"' \
|
'[from]="Empty Sender <empty_test@notmuchmail.org>"' \
|
||||||
"[in-reply-to]=\<$empty_parent\>"
|
"[in-reply-to]=\<$empty_parent\>"
|
||||||
output=$(notmuch search --sort=newest-first from:empty_test@notmuchmail.org | notmuch_search_sanitize)
|
output=$(notmuch search --sort=newest-first from:empty_test@notmuchmail.org | notmuch_search_sanitize)
|
||||||
test_expect_equal "$output" "thread:XXX 2001-01-14 [2/2] Empty Sender; (inbox unread)"
|
test_expect_equal "$output" "thread:XXX 2001-01-14 [2/2] Empty Sender; (inbox unread)"
|
||||||
|
@ -78,15 +78,15 @@ test_expect_equal "$output" "thread:XXX 2001-01-14 [2/2] Empty Sender; (inbox
|
||||||
test_begin_subtest "Avoid empty subjects if possible (newest-first)."
|
test_begin_subtest "Avoid empty subjects if possible (newest-first)."
|
||||||
add_message '[subject]="Non-empty subject (1)"' \
|
add_message '[subject]="Non-empty subject (1)"' \
|
||||||
'[date]="Mon, 15 Jan 2001 15:43:45 -0000"' \
|
'[date]="Mon, 15 Jan 2001 15:43:45 -0000"' \
|
||||||
'[from]="Empty Sender \<empty_test@notmuchmail.org\>"' \
|
'[from]="Empty Sender <empty_test@notmuchmail.org>"' \
|
||||||
"[in-reply-to]=\<$empty_parent\>"
|
"[in-reply-to]=\<$empty_parent\>"
|
||||||
add_message '[subject]="Non-empty subject (2)"' \
|
add_message '[subject]="Non-empty subject (2)"' \
|
||||||
'[date]="Mon, 16 Jan 2001 15:43:45 -0000"' \
|
'[date]="Mon, 16 Jan 2001 15:43:45 -0000"' \
|
||||||
'[from]="Empty Sender \<empty_test@notmuchmail.org\>"' \
|
'[from]="Empty Sender <empty_test@notmuchmail.org>"' \
|
||||||
"[in-reply-to]=\<$empty_parent\>"
|
"[in-reply-to]=\<$empty_parent\>"
|
||||||
add_message '[subject]="@FORCE_EMPTY"' \
|
add_message '[subject]="@FORCE_EMPTY"' \
|
||||||
'[date]="Tue, 17 Jan 2001 15:43:45 -0000"' \
|
'[date]="Tue, 17 Jan 2001 15:43:45 -0000"' \
|
||||||
'[from]="Empty Sender \<empty_test@notmuchmail.org\>"' \
|
'[from]="Empty Sender <empty_test@notmuchmail.org>"' \
|
||||||
"[in-reply-to]=\<$empty_parent\>"
|
"[in-reply-to]=\<$empty_parent\>"
|
||||||
output=$(notmuch search --sort=newest-first from:Empty | notmuch_search_sanitize)
|
output=$(notmuch search --sort=newest-first from:Empty | notmuch_search_sanitize)
|
||||||
test_expect_equal "$output" "thread:XXX 2001-01-17 [5/5] Empty Sender; Non-empty subject (2) (inbox unread)"
|
test_expect_equal "$output" "thread:XXX 2001-01-17 [5/5] Empty Sender; Non-empty subject (2) (inbox unread)"
|
||||||
|
|
Loading…
Reference in a new issue