diff options
author | Carl Worth <cworth@cworth.org> | 2011-05-31 15:19:12 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2011-05-31 15:19:12 -0700 |
commit | 6ca7d73239091e8bff7cb05b145c6696d7b5d79a (patch) | |
tree | e07722fd6c97fc8618ffb48bcf6bb182d90e0d58 /test/multipart | |
parent | 5a7a1d499786f103dfdbd81e30ead72aad214ac1 (diff) |
test: Fix a misspelling in one of our test cases.
Not that it affects the correctness of the test, but it's nice to use
proper spelling. This kind of change could invalidate a signature on the
test message, but I think that would have happened previously when the
HTML part was added in the first place.
Diffstat (limited to 'test/multipart')
-rwxr-xr-x | test/multipart | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/multipart b/test/multipart index 62efd84e..1bcdfa25 100755 --- a/test/multipart +++ b/test/multipart @@ -29,7 +29,7 @@ Message-ID: <87liy5ap01.fsf@yoom.home.cworth.org> MIME-Version: 1.0 Content-Type: text/html -<p>This is an imbeded message, with a single html part.</p> +<p>This is an embedded message, with a single html part.</p> --=-=-= Content-Disposition: attachment; filename=attachment @@ -238,7 +238,7 @@ test_expect_equal "$output" "$(cat "${MAIL_DIR}"/multipart)" test_begin_subtest "--format=raw --part=1, message body" output=$(notmuch show --format=raw --part=1 'id:87liy5ap00.fsf@yoom.home.cworth.org') test_expect_equal "$output" \ -'<p>This is an imbeded message, with a single html part.</p> +'<p>This is an embedded message, with a single html part.</p> This is a text attachment. And this message is signed. @@ -254,7 +254,7 @@ W6cAmQE4dcYrx/LPLtYLZm1jsGauE5hE test_begin_subtest "--format=raw --part=2, multipart/mixed" output=$(notmuch show --format=raw --part=2 'id:87liy5ap00.fsf@yoom.home.cworth.org') test_expect_equal "$output" \ -'<p>This is an imbeded message, with a single html part.</p> +'<p>This is an embedded message, with a single html part.</p> This is a text attachment. And this message is signed. @@ -263,12 +263,12 @@ And this message is signed. test_begin_subtest "--format=raw --part=3, rfc822 multipart" output=$(notmuch show --format=raw --part=3 'id:87liy5ap00.fsf@yoom.home.cworth.org') test_expect_equal "$output" \ -'<p>This is an imbeded message, with a single html part.</p>' +'<p>This is an embedded message, with a single html part.</p>' test_begin_subtest "--format=raw --part=4, html part" output=$(notmuch show --format=raw --part=4 'id:87liy5ap00.fsf@yoom.home.cworth.org') test_expect_equal "$output" \ -'<p>This is an imbeded message, with a single html part.</p>' +'<p>This is an embedded message, with a single html part.</p>' test_begin_subtest "--format=raw --part=5, inline attachment" output=$(notmuch show --format=raw --part=5 'id:87liy5ap00.fsf@yoom.home.cworth.org') |