aboutsummaryrefslogtreecommitdiff
path: root/t/t3501-revert-cherry-pick.sh
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-10-21 14:26:25 +0200
committerJunio C Hamano <gitster@pobox.com>2016-10-21 09:32:35 -0700
commit93b3df6f147fa2bf10116aaeb3597e0b6becaf35 (patch)
tree3bc0ba7925eb309b64edc397ff0ddfebe83e6b63 /t/t3501-revert-cherry-pick.sh
parentf7ed1953d88e3eaffbbd52e47faa73ae8640ecd7 (diff)
downloadgit-93b3df6f147fa2bf10116aaeb3597e0b6becaf35.tar.gz
git-93b3df6f147fa2bf10116aaeb3597e0b6becaf35.tar.xz
sequencer: start error messages consistently with lower case
Quite a few error messages touched by this developer during the work to speed up rebase -i started with an upper case letter, violating our current conventions. Instead of sneaking in this fix (and forgetting quite a few error messages), let's just have one wholesale patch fixing all of the error messages in the sequencer. While at it, the funny "error: Error wrapping up..." was changed to a less funny, but more helpful, "error: failed to finalize...". Pointed out by Junio Hamano. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3501-revert-cherry-pick.sh')
-rwxr-xr-xt/t3501-revert-cherry-pick.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3501-revert-cherry-pick.sh b/t/t3501-revert-cherry-pick.sh
index 51f3bbb8a..394f0005a 100755
--- a/t/t3501-revert-cherry-pick.sh
+++ b/t/t3501-revert-cherry-pick.sh
@@ -96,7 +96,7 @@ test_expect_success 'revert forbidden on dirty working tree' '
echo content >extra_file &&
git add extra_file &&
test_must_fail git revert HEAD 2>errors &&
- test_i18ngrep "Your local changes would be overwritten by " errors
+ test_i18ngrep "your local changes would be overwritten by " errors
'