diff options
author | Jeff King <peff@peff.net> | 2012-11-09 12:42:32 -0500 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2012-11-09 12:42:32 -0500 |
commit | 64b22a58949cd56c6ce586c1b9da1b1d32a2889e (patch) | |
tree | 151745b372c92aab204669af109fc36ecaa2735c /t/t4202-log.sh | |
parent | 15ba878a1dc4ae929ed121c109a9ff7d35149bea (diff) | |
parent | 25dc8dad3a7c9f5426f549701e22eec1f894fec8 (diff) | |
download | git-64b22a58949cd56c6ce586c1b9da1b1d32a2889e.tar.gz |
Merge branch 'js/format-2047'
Fixes many rfc2047 quoting issues in the output from format-patch.
* js/format-2047:
format-patch tests: check quoting/encoding in To: and Cc: headers
format-patch: fix rfc2047 address encoding with respect to rfc822 specials
format-patch: make rfc2047 encoding more strict
format-patch: introduce helper function last_line_length()
format-patch: do not wrap rfc2047 encoded headers too late
format-patch: do not wrap non-rfc2047 headers too early
utf8: fix off-by-one wrapping of text
Diffstat (limited to 't/t4202-log.sh')
-rwxr-xr-x | t/t4202-log.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4202-log.sh b/t/t4202-log.sh index e6537abe1d..a343bf6c62 100755 --- a/t/t4202-log.sh +++ b/t/t4202-log.sh @@ -72,9 +72,9 @@ cat > expect << EOF commit. EOF -test_expect_success 'format %w(12,1,2)' ' +test_expect_success 'format %w(11,1,2)' ' - git log -2 --format="%w(12,1,2)This is the %s commit." > actual && + git log -2 --format="%w(11,1,2)This is the %s commit." > actual && test_cmp expect actual ' |