diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-08-12 11:59:00 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-12 15:12:33 -0700 |
commit | 7ca79dca0628a8b375ff0fdff2ed04471a32e921 (patch) | |
tree | 5d8619ff78f29e02ed561206c7e32f60f48b884e /t/t3404-rebase-interactive.sh | |
parent | Sync with 2.9.3 (diff) | |
download | tgif-7ca79dca0628a8b375ff0fdff2ed04471a32e921.tar.xz |
t3404: become resilient to GETTEXT_POISON
The concerned test greps the output of exit_with_patch() in
git-rebase--interactive.sh script.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 197914bbd8..597e94e294 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1286,7 +1286,7 @@ test_expect_success 'rebase -i --gpg-sign=<key-id>' ' set_fake_editor && FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \ >out 2>err && - grep "$SQ-S\"S I Gner\"$SQ" err + test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err ' test_done |