On Thu, Apr 14, 2011 at 07:01:41PM +0200, Erik Faye-Lund wrote: > diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh > index 9c66367..a4b8b59 100755 > --- a/t/t4014-format-patch.sh > +++ b/t/t4014-format-patch.sh > @@ -793,4 +793,19 @@ test_expect_success 'format-patch wraps extremely > long headers (rfc2047)' ' Speaking of wrapping, your MUA seems to have mangled the patch. > +M8="foo_bar_" > +M64=$M8$M8$M8$M8$M8$M8$M8$M8 > +cat >expect <<'EOF' > +From: foo_bar_foo_bar_foo_bar_foo_bar_foo_bar_foo_bar_foo_bar_foo_bar > + <foobar@xxxxxxx> > +EOF Your expect data is missing the trailing "_". You could probably just do: cat >expect <<EOF From: $M64 <foobar@xxxxxxx> EOF which is even simpler. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html