aboutsummaryrefslogtreecommitdiff
path: root/t/t6006-rev-list-format.sh
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2016-09-17 20:25:24 +0200
committerJunio C Hamano <gitster@pobox.com>2016-09-19 10:50:32 -0700
commitc99ad274b196bc97f22c1c39178784668cb4623d (patch)
tree6c3ebbcffc1d0c3a33cace1b46fa0539e211090a /t/t6006-rev-list-format.sh
parentb15a3e005af07843116c73205742adfbab3d2e82 (diff)
downloadgit-c99ad274b196bc97f22c1c39178784668cb4623d.tar.gz
git-c99ad274b196bc97f22c1c39178784668cb4623d.tar.xz
pretty: let %C(auto) reset all attributes
Reset colors and attributes upon %C(auto) to enable full automatic control over them; otherwise attributes like bold or reverse could still be in effect from previous %C placeholders. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6006-rev-list-format.sh')
-rwxr-xr-xt/t6006-rev-list-format.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh
index a1dcdb81d..f6020cd2a 100755
--- a/t/t6006-rev-list-format.sh
+++ b/t/t6006-rev-list-format.sh
@@ -225,7 +225,7 @@ test_expect_success '%C(auto,...) respects --color=auto (stdout not tty)' '
test_expect_success '%C(auto) respects --color' '
git log --color --format="%C(auto)%H" -1 >actual &&
- printf "\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect &&
+ printf "\\033[m\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect &&
test_cmp expect actual
'